forked from amorphitec/opengb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·37 lines (36 loc) · 1 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
from setuptools import setup, find_packages
setup(
name='opengb',
version='0.2.0',
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',
],
tests_require=[
'mock>-1.8.1,<2',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)