axi/setup.py

22 lines
673 B
Python
Raw Normal View History

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-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',
),
)