forked from j616/brewblox-tilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 856 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
from setuptools import find_packages, setup
setup(
name='brewblox-tilt',
version='1.2.2',
long_description="Tilt hydrometer service for BrewBlox",
url='https://github.com/j616/brewblox-tilt',
author='James Sandford',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.7',
'Intended Audience :: End Users/Desktop',
'Topic :: System :: Hardware',
],
keywords='brewing brewpi brewblox embedded plugin service tilt hydrometer',
packages=find_packages(exclude=['test', 'docker']),
install_requires=[
'brewblox-service',
'pint',
'numpy'
],
python_requires='>=3.7',
extras_require={'dev': ['pipenv']}
)