Holger Frey
7 years ago
3 changed files with 36 additions and 0 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
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, |
||||
) |
Loading…
Reference in new issue