-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (27 loc) · 959 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
31
32
#!/usr/bin/env python3
# coding=utf-8
"""Standard setup.py. Speaks for itself."""
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='isdttool',
version='1.0.0',
packages=find_packages(),
url='https://github.com/maxried/isdt',
license='GPLv3',
install_requires='hidapi~=0.10.1',
author='Max Ried',
author_email='[email protected]',
description='Tool to retrieve information from ISDT chargers with USB connection.',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={'console_scripts': ['isdttool=isdttool.cli_tool:main']},
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"System :: Hardware :: Hardware Drivers",
"OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)