2017-01-08 01:48:01 +00:00
|
|
|
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'],
|
2017-01-09 04:11:33 +00:00
|
|
|
install_requires=['pyserial', 'shapely'],
|
2017-01-16 01:28:07 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'axi = axi.main:main'
|
|
|
|
]
|
|
|
|
},
|
2017-01-08 01:48:01 +00:00
|
|
|
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',
|
|
|
|
),
|
|
|
|
)
|