-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 795 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 795 Bytes
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
from setuptools import setup
setup(
name='axi',
version='0.1',
description='Library for working with the AxiDraw v3 pen plotter.',
author='Michael Fogleman',
author_email='michael.fogleman@gmail.com',
packages=['axi'],
install_requires=['pyserial', 'shapely', 'pyhull', 'cairocffi'],
entry_points={
'console_scripts': [
'axi = axi.main:main'
]
},
license='MIT',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
),
)