You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
7 years ago
|
from setuptools import setup, find_packages
|
||
|
|
||
|
def readfile(name):
|
||
|
with open(name) as f:
|
||
|
return f.read()
|
||
|
|
||
|
README = readfile('README.md')
|
||
|
CHANGES = readfile('CHANGES.txt')
|
||
|
|
||
|
install_requires = [
|
||
|
'pyserial',
|
||
|
]
|
||
|
|
||
|
setup(name='arduino_timetable',
|
||
|
version='0.0.1',
|
||
|
description='Sending Commands From a Time Table to Arduino ',
|
||
|
long_description=README + '\n\n' + CHANGES,
|
||
|
classifiers=[
|
||
|
"Development Status :: 3 - Alpha",
|
||
|
"Intended Audience :: Developers",
|
||
|
"Programming Language :: Python",
|
||
|
"Programming Language :: Python :: 3.6",
|
||
|
"Framework :: AsyncIO",
|
||
|
"Topic :: Scientific/Engineering",
|
||
|
"Topic :: Terminals :: Serial",
|
||
|
"License :: OSI Approved :: BSD License",
|
||
|
],
|
||
|
keywords='arduino python',
|
||
|
author="Holger Frey",
|
||
|
author_email="frey@imtek.de",
|
||
|
packages=find_packages(),
|
||
|
include_package_data=True,
|
||
|
zip_safe=False,
|
||
|
python_requires='>=3.6',
|
||
|
install_requires=install_requires,
|
||
|
)
|