summary refs log tree commit diff
path: root/setup.py
blob: 444eaf08ab491949a8a5c4d47e01fe8bc20a6db7 (plain)
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
from setuptools import setup

with open("README.rst") as file:
    long_description = file.read()

setup(
    name = "KayleeVC",
    version = "0.1.1",
    author = "Clayton G. Hobbs",
    author_email = "clay@lakeserv.net",
    description = ("Somewhat fancy voice command recognition software"),
    license = "GPLv3+",
    keywords = "voice speech command control",
    url = "https://github.com/Ratfink/kaylee",
    packages = ['kayleevc'],
    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/kaylee", ["data/icon_inactive.png", "data/icon.png",
            "options.json.tmp"])
    ],
    entry_points = {
        "console_scripts": [
            "kaylee=kayleevc.kaylee:run"
        ]
    }
)