-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 830 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import find_packages, setup
setup(
name='brewblox-volume-sensor',
version='0.1',
long_description=open('README.md').read(),
url='https://github.com/singesavant/brewblox-volume-sensor',
author='Guillaume Libersat',
author_email='guillaume@singe-savant.com',
classifiers=[
'Development Status :: 3 - Alpha',
'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',
packages=find_packages(exclude=['test', 'docker']),
install_requires=[
'brewblox-service~=0.14.0'
],
python_requires='>=3.7',
extras_require={'dev': ['pipenv']}
)