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.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  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://git.clayhobbs.com/clay/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.6",
  24. "Topic :: Home Automation"
  25. ],
  26. install_requires=["requests", "setuptools"],
  27. data_files = [
  28. ("/usr/share/kaylee", ["data/icon_inactive.png", "data/icon.png",
  29. "plugins.json.dist"]),
  30. ("/usr/lib/systemd/user", ["systemd/kaylee.service"])
  31. ],
  32. entry_points = {
  33. "console_scripts": [
  34. "kaylee=kayleevc.kaylee:run"
  35. ]
  36. }
  37. )