forked from hackable-devices/makerbot_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.03 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.03 KB
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
from setuptools import setup, find_packages
version = '0.1'
setup(name='makerbot_tools',
version=version,
description="",
long_description="""\
""",
classifiers=[],
keywords='',
author='CKAB',
author_email='',
url='',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'python-daemon',
'mock',
'lockfile',
'argparse',
'pyserial',
'conveyor',
'waitress',
'bottle',
],
entry_points="""
[console_scripts]
conveyor-server=makerbot_tools.scripts:conveyor_server
conveyor-client=makerbot_tools.scripts:conveyor_client
conveyor-ui=makerbot_tools.scripts:serve
print=makerbot_tools.scripts:conveyor_print
s3b_print=makerbot_tools.s3b_printer:main
s3b_card_files=makerbot_tools.s3b_card_files:main
""",
)