Somewhat fancy voice command recognition software
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.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. from setuptools import setup
  2. with open("README.rst") as file:
  3. long_description = file.read()
  4. setup(
  5. name = "KayleeVC",
  6. version = "0.1.1",
  7. author = "Clayton G. Hobbs",
  8. author_email = "clay@lakeserv.net",
  9. description = ("Somewhat fancy voice command recognition software"),
  10. license = "GPLv3+",
  11. keywords = "voice speech command control",
  12. url = "https://github.com/Ratfink/kaylee",
  13. packages = ['kayleevc'],
  14. long_description = long_description,
  15. classifiers = [
  16. "Development Status :: 3 - Alpha",
  17. "Environment :: X11 Applications :: GTK",
  18. "Intended Audience :: End Users/Desktop",
  19. "License :: OSI Approved :: GNU General Public License v3 or later "
  20. "(GPLv3+)",
  21. "Operating System :: POSIX :: Linux",
  22. "Programming Language :: Python :: 3 :: Only",
  23. "Programming Language :: Python :: 3.5",
  24. "Topic :: Home Automation"
  25. ],
  26. install_requires=["requests"],
  27. data_files = [
  28. ("/usr/share/kaylee", ["data/icon_inactive.png", "data/icon.png",
  29. "options.json.tmp"])
  30. ],
  31. entry_points = {
  32. "console_scripts": [
  33. "kaylee=kayleevc.kaylee:run"
  34. ]
  35. }
  36. )