1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
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=["more-itertools", "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"
]
}
)
|