-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·38 lines (37 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='opengb',
version='0.22.3',
author='re:3D',
author_email='[email protected]',
description='OpenGB printer control.',
long_description=open('README.md').read(),
license='LICENSE.txt',
packages=find_packages(),
url='http://www.re3d.org/',
include_package_data=True,
entry_points={
'console_scripts': [
'opengb = opengb.server:main',
]
},
install_requires=[
'pyserial>=2.7,<3',
'tornado>=4.2.1,<5',
'peewee>=2.6.3,<3',
'json-rpc>=1.10.2,<2',
'psutil>=4.1,<5',
'RPi.GPIO>=0.6.2,<0.7',
],
tests_require=[
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)