forked from singularity/singularity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 958 Bytes
/
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
#!/usr/bin/env python
import singularity
from setuptools import setup, find_packages
setup(
name="Endgame-Singularity",
version=singularity.__version__,
description="A simulation of a true AI",
author="Evil Mr Henry",
author_email="evilmrhenry@emhsoft.com",
url="https://singularity.github.io/",
license="GPL",
classifiers=[
'Intended Audience :: End Users/Desktop',
'Topic :: Games/Entertainment',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'numpy',
'pygame',
'polib>=0.7',
],
entry_points={
'gui_scripts': [
'singularity=singularity.__main__:main',
],
},
)