-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.15 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
from setuptools import setup
setup(
name='vais',
version='0.0.8',
author='Duncan Murray',
author_email='djmurray@acutesoftware.com.au',
packages=['vais', 'vais.data','vais.examples','vais.npc'],
url='https://github.com/acutesoftware/virtual-AI-simulator',
install_requires=[
'nose >= 1.0',
'noise >= 1.2.1',
'aikif >= 0.1.9',
'rawdata >= 0.0.6'
],
include_package_data = True,
package_data = {
'vais': ['data/*.*'],
},
license='LICENSE.txt',
description='Virtual AI Simulator runs agents and players across multiple worlds',
long_description=open('README.rst').read(),
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Games/Entertainment :: Simulation',
],
)