-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 854 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
import re
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('ssp_9081/bin/ssp9081.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name='ssp_9081',
version=version,
packages=['ssp_9081', 'ssp_9081.bin'],
entry_points={"console_scripts": ['ssp9081 = ssp_9081.bin.ssp9081:main', 'ssp_9081 = ssp_9081.bin.ssp9081:main']},
install_requires=['pyserial>=3.3'],
python_requires='>3.5',
url='https://github.com/maslovw/SSP-9081',
author='maslovw',
author_email='[email protected]',
license='MIT',
keywords='SSP-9081 REMOTE PROGRAMMABLE Power Supply',
description='Handles SSP-9081 (Remote Programmable Power Supply with DC wave form generator) '
'command usage: ssp9081 --help'
)