-
Notifications
You must be signed in to change notification settings - Fork 76
/
setup.py
34 lines (31 loc) · 877 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
#!/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="[email protected]",
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 :: 3",
],
packages=find_packages(exclude=['utils']),
zip_safe=False,
include_package_data=True,
install_requires=[
"numpy",
"pygame",
"polib>=0.7",
],
entry_points={
"gui_scripts": [
"singularity=singularity.__main__:main",
],
},
)