from setuptools import setup with open("README.rst") as file: long_description = file.read() setup( name = "Pollyanna", version = "0.1", author = "Irene Knapp", author_email = "ireneista@irenes.space", description = ("Linux voice input experiments, with code from KayleeVC"), license = "GPLv3+", keywords = "voice speech command control", url = "https://code.irenes.space/pollyanna/", packages = ['pollyanna'], long_description = long_description, classifiers = [ "Development Status :: 3 - Alpha", "Environment :: X11 Applications :: GTK", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License v3 or later " "(GPLv3+)", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.5", "Topic :: Home Automation" ], install_requires=["requests"], data_files = [ ("/usr/share/pollyanna", ["data/icon.png", "data/icon_small.png", "data/icon_inactive.png", "data/icon_inactive_small.png", "options.json.tmp"]), ("/usr/lib/systemd/user", ["systemd/pollyanna.service"]) ], entry_points = { "console_scripts": [ "pollyanna=pollyanna.pollyanna:run" ] } )