-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·29 lines (27 loc) · 887 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='dtv2',
version='0.4.8',
description='Some functions to handle color management on the Drevo Tyrfing V2',
long_description_content_type='text/markdown',
long_description=long_description,
url='https://twitter.com/david_cobac',
author='David COBAC',
author_email='david.cobac@gmail.com',
keywords=['keyboard',
'drevo',
'tyrfing'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
license='CC-BY-NC-SA',
# packages=find_packages(),
install_requires=["hidapi", "colour"],
scripts=['bin/dtv2change', 'bin/dtv2reader'],
packages=find_packages(),
package_dir={'dtv2': 'dtv2'},
package_data={'dtv2': ['*.json']}
)