File: setup.py

package info (click to toggle)
singularity 1.0.0%2Bgit20241231-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,492 kB
  • sloc: python: 12,985; sh: 172; makefile: 28
file content (34 lines) | stat: -rw-r--r-- 877 bytes parent folder | download
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="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 :: 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",
        ],
    },
)