Python library for working with the PD Buddy Sink Serial Console Configuration Interface
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.

setup.py 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. from setuptools import setup
  2. with open("README.rst") as file:
  3. long_description = file.read()
  4. setup(
  5. name = "pd-buddy-python",
  6. version = "0.5.1",
  7. author = "Clayton G. Hobbs",
  8. author_email = "clay@lakeserv.net",
  9. description = ("Python library for configuring PD Buddy Sink devices"),
  10. license = "GPLv3+",
  11. keywords = "usb serial pd-buddy configuration",
  12. url = "https://git.clayhobbs.com/pd-buddy/pd-buddy-python",
  13. packages = ['pdbuddy', 'pdbuddy.tools'],
  14. long_description = long_description,
  15. classifiers = [
  16. "Development Status :: 4 - Beta",
  17. "Intended Audience :: Developers",
  18. "License :: OSI Approved :: GNU General Public License v3 or later "
  19. "(GPLv3+)",
  20. "Operating System :: POSIX :: Linux",
  21. "Operating System :: MacOS :: MacOS X",
  22. "Operating System :: Microsoft :: Windows",
  23. "Programming Language :: Python",
  24. "Programming Language :: Python :: 2.7",
  25. "Programming Language :: Python :: 3.3",
  26. "Programming Language :: Python :: 3.4",
  27. "Programming Language :: Python :: 3.5",
  28. "Programming Language :: Python :: 3.6",
  29. "Topic :: Software Development :: User Interfaces"
  30. ],
  31. install_requires=[
  32. "pyserial>=3,<4",
  33. "aenum>=2;python_version<'3.6'"
  34. ],
  35. test_suite="test_pdbuddy"
  36. )