-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
42 lines (40 loc) · 1.3 KB
/
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
33
34
35
36
37
38
39
40
41
42
"""Package manager setup for TrippLite driver."""
from setuptools import setup
with open('README.md') as in_file:
long_description = in_file.read()
setup(
name="tripplite",
version="0.4.0",
description="Python driver for TrippLite UPS battery backups.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/numat/tripplite/",
author="Patrick Fuller",
author_email="[email protected]",
packages=['tripplite'],
install_requires=['hidapi'],
entry_points={
'console_scripts': [
'tripplite = tripplite:command_line',
],
},
extras_require={
'exporter': ['prometheus_client'],
'test': [
'ruff',
],
},
license='GPLv2',
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Human Machine Interfaces'
]
)