-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (48 loc) · 1.45 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
PROJECT = 'airena'
VERSION = '0.1'
import os, sys
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
from distutils.util import convert_path
from fnmatch import fnmatchcase
description = "A platform for experimenting with AI agents"
try:
long_description = open('README.org', 'rt').read()
except IOError:
long_description = description
setup(
name=PROJECT,
version=VERSION,
description=description,
long_description=long_description,
author='Dustin Lacewell',
author_email='[email protected]',
platforms=['Any'],
scripts=[],
provides=[],
install_requires=['distribute', 'argparse', 'pygame', 'straight.plugin'],
zip_safe=False,
namespace_packages=[],
packages=find_packages(),
# package_data = {
# '': ['data/settings.py'],
# },
package_data = {
'': ['data/*']
},
entry_points={
'console_scripts': [
'airena = airena.cli:main'
],
},
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Intended Audience :: Developers',
'Environment :: Console',
],
)