-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·35 lines (33 loc) · 1005 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
33
34
35
from setuptools import setup
long_description = open("README.rst").read()
setup(
name='smokematic',
version='0.1.0',
author='Brian Turek',
author_email='[email protected]',
description='A smoking (cooking) automation system built on the Beaglebone Black',
long_description=long_description,
license='BSD',
url='https://github.com/Caligatio/smokematic',
packages=['smokematic'],
entry_points={
'console_scripts': [
'smokematic=smokematic:entry'
]
},
install_requires=[
'tornado',
'Adafruit_BBIO'
],
include_package_data=True,
classifiers= [
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: JavaScript',
'Topic :: Home Automation',
'Topic :: Software Development :: Embedded Systems'
],
zip_safe=False
)