forked from BrewBlox/brewblox-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 816 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 816 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
25
26
27
from setuptools import setup, find_packages
project_name = 'YOUR-PACKAGE'
package_name = 'YOUR_PACKAGE'
setup(
name=project_name,
version='0.1',
long_description=open('README.md').read(),
url='YOUR_REPOSITORY',
author='YOUR NAME',
author_email='YOU@PROVIDER.com',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.6',
'Intended Audience :: End Users/Desktop',
'Topic :: System :: Hardware',
],
keywords='brewing brewpi brewblox embedded plugin service',
packages=find_packages(exclude=['test']),
install_requires=[
'brewblox-service~=0.5'
],
python_requires='>=3.6',
extras_require={'dev': ['tox', 'pipenv']}
)