forked from SerpentAI/SerpentAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
123 lines (118 loc) · 4.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/usr/bin/env python
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = ""
packages = [
"serpent",
"serpent.dashboard",
"serpent.dashboard.cefbrowser",
"serpent.dashboard.models",
"serpent.game_agents",
"serpent.game_launchers",
"serpent.games",
"serpent.input_controllers",
"serpent.loggers",
"serpent.machine_learning",
"serpent.machine_learning.context_classification",
"serpent.machine_learning.context_classification.context_classifiers",
"serpent.machine_learning.reinforcement_learning",
"serpent.machine_learning.reinforcement_learning.agents",
"serpent.machine_learning.reinforcement_learning.rainbow_dqn",
"serpent.machine_learning.reinforcement_learning.ppo",
"serpent.machine_learning.object_recognition",
"serpent.machine_learning.object_recognition.object_recognizers",
"serpent.visual_debugger",
"serpent.wamp_components",
"serpent.window_controllers"
]
data_files = [
("serpent/dashboard/cefbrowser", [
"serpent/dashboard/cefbrowser/cefbrowser.kv"
]),
("serpent/templates/SerpentGameAgentPlugin", [
"serpent/templates/SerpentGameAgentPlugin/plugin.py",
"serpent/templates/SerpentGameAgentPlugin/__init__.py",
"serpent/templates/SerpentGameAgentPlugin/.gitignore",
"serpent/templates/SerpentGameAgentPlugin/.gitattributes"
]),
("serpent/templates/SerpentGameAgentPlugin/files", [
"serpent/templates/SerpentGameAgentPlugin/files/serpent_game_agent.py",
"serpent/templates/SerpentGameAgentPlugin/files/__init__.py"
]),
("serpent/templates/SerpentGameAgentPlugin/files/ml_models", [
"serpent/templates/SerpentGameAgentPlugin/files/ml_models/.gitkeep"
]),
("serpent/templates/SerpentGameAgentPlugin/files/helpers", [
"serpent/templates/SerpentGameAgentPlugin/files/helpers/.gitkeep"
]),
("serpent/templates/SerpentGamePlugin", [
"serpent/templates/SerpentGamePlugin/plugin.py",
"serpent/templates/SerpentGamePlugin/__init__.py",
"serpent/templates/SerpentGamePlugin/.gitignore"
]),
("serpent/templates/SerpentGamePlugin/files", [
"serpent/templates/SerpentGamePlugin/files/serpent_game.py",
"serpent/templates/SerpentGamePlugin/files/__init__.py"
]),
("serpent/templates/SerpentGamePlugin/files/data/sprites", [
"serpent/templates/SerpentGamePlugin/files/data/sprites/.gitkeep"
]),
("serpent/templates/SerpentGamePlugin/files/api", [
"serpent/templates/SerpentGamePlugin/files/api/api.py",
"serpent/templates/SerpentGamePlugin/files/api/__init__.py"
]),
("serpent/config", [
"serpent/config/config.yml",
"serpent/config/config.plugins.yml"
]),
("serpent", [
"serpent/offshoot.manifest.json",
"serpent/offshoot.yml",
"serpent/requirements.linux.txt",
"serpent/requirements.win32.txt",
"serpent/requirements.darwin.txt",
"serpent/crossbar.json"
]),
("dashboard", [
"dashboard/database.sqlite",
"dashboard/serpent.png"
]),
]
requires = [
"offshoot",
"Cython==0.26.1"
]
setup(
name='SerpentAI',
version="2018.1.2",
description='Game Agent Development Kit. Helping you create AIs / Bots to play any game you own!',
long_description=long_description,
author="Nicholas Brochu",
author_email='[email protected]',
packages=packages,
data_files=data_files,
include_package_data=True,
install_requires=requires,
entry_points={
'console_scripts': ['serpent = serpent.serpent:execute']
},
license='MIT',
url='https://github.com/SerpentAI/Serpent',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Games/Entertainment'
]
)