2017-12-09 02:13:10 +00:00
|
|
|
# Always prefer setuptools over distutils
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
# To use a consistent encoding
|
|
|
|
from codecs import open
|
|
|
|
from os import path
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='apple410',
|
|
|
|
version='0.1.0',
|
|
|
|
description='A library for controlling the Apple 410 Color Plotter',
|
|
|
|
# The project's main homepage.
|
|
|
|
url='https://github.com/nycresistor/Apple410',
|
|
|
|
|
|
|
|
# Author details
|
|
|
|
author='Adam Mayer',
|
|
|
|
author_email='phooky@gmail.com',
|
|
|
|
|
|
|
|
# Choose your license
|
|
|
|
license='MIT',
|
|
|
|
|
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
|
|
|
|
# Indicate who your project is intended for
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Topic :: Printing',
|
|
|
|
|
|
|
|
# Pick your license as you wish (should match "license" above)
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
],
|
|
|
|
|
|
|
|
keywords='plotter retrocomputing',
|
|
|
|
|
|
|
|
# You can just specify the packages manually here if your project is
|
|
|
|
# simple. Or you can use find_packages().
|
|
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
2017-12-10 02:58:01 +00:00
|
|
|
install_requires=['pyserial'],
|
2017-12-09 02:13:10 +00:00
|
|
|
|
|
|
|
python_requires='>=3',
|
|
|
|
# To provide executable scripts, use entry points in preference to the
|
|
|
|
# "scripts" keyword. Entry points provide cross-platform support and allow
|
|
|
|
# pip to create the appropriate form of executable for the target platform.
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2017-12-10 02:58:01 +00:00
|
|
|
'apple410=apple410.cmdline:main',
|
2017-12-09 02:13:10 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|