forked from storborg/axibot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
from __future__ import print_function
from setuptools import setup, find_packages
setup(name='axibot',
version='0.0.3.dev',
description='Software for AxiDraw pen plotting robot',
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Environment :: Console',
'Environment :: Web Environment',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics',
'Topic :: Printing',
],
keywords='eibotboard axidraw cam motion pen drawing plotter',
url='https://github.com/storborg/axibot',
author='Scott Torborg',
author_email='[email protected]',
license='GPL',
packages=find_packages(),
install_requires=[
'six',
'pyserial',
'svg.path',
'colormath',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
extras_require={
'server': ['aiohttp',
'aiohttp_mako'],
'debug': ['matplotlib'],
},
include_package_data=True,
zip_safe=False,
entry_points="""\
[console_scripts]
axibot = axibot.cmd:main
axibot-debug = axibot.debug:main [debug]
""")