Browse Source

setup of python package

pyinstaller
Holger Frey 7 years ago
parent
commit
1a40223052
  1. 0
      CHANGES.txt
  2. 0
      arduino_timetable/arduino_timetable.py
  3. 36
      setup.py

0
CHANGES.txt

0
arduino_timetable/arduino_timetable.py

36
setup.py

@ -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…
Cancel
Save