forked from vavrek/Open-Assistant-Version-Zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (40 loc) · 1.36 KB
/
setup.py
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
42
43
44
# OpenAssistant 0.04
# 2016 General Public License V3
# By Andrew Vavrek, Clayton G. Hobbs, Jezra, Jonathan Kulp
# setup.py - OpenAssistant Initialization
from setuptools import setup
with open("README.rst") as file:
long_description = file.read()
setup(
name = "OpenAssistant",
version = "0.04",
author = "Andrew Vavrek, Clayton G. Hobbs, Jezra, Jonathan Kulp",
author_email = "[email protected]",
description = ("Open Source AI Systems"),
license = "GPLv3+",
keywords = "ai personal assistant voice control command",
url = "https://github.com/vavrek/openassistant",
packages = ['OpenAssistant'],
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 :: Open Source AI"
],
install_requires=["requests"],
data_files = [
("./img", ["icon_inactive.png", "icon.png",
"./etc/commands.json"])
],
entry_points = {
"console_scripts": [
"assist=bin.core:run"
]
}
)