-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (29 loc) · 963 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
30
from setuptools import setup
setup(name='dc6006l',
version='0.0.1',
description='CLI/library to control FNIRSI DC Power Supply (DC-6006L, etc).',
long_description=open('README.md').read(),
url='https://github.com/tai/dc6006l/',
author='Taisuke Yamada',
author_email='[email protected]',
license='MIT',
packages=['dc6006l'],
entry_points = '''
[console_scripts]
dc6006l=dc6006l:main
''',
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Embedded Systems',
'Topic :: System :: Hardware',
],
install_requires=[
'pyserial',
'argparse',
]
)