-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·40 lines (37 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from conway.gol import __version__
PACKAGE = "gol"
NAME = "gol"
DESCRIPTION = "Curses implementation of Conway's Game Of Life with an evolutionary twist"
AUTHOR = "Chris Seymour"
AUTHOR_EMAIL = "[email protected]"
AUTHOR_TWITTER = "@iiSeymour"
URL = "https://github.com/iiSeymour/game-of-life"
setup(
name=NAME,
version=__version__,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="MIT",
url=URL,
packages=['conway'],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Games/Entertainment :: Simulation",
"Programming Language :: Python",
],
entry_points={
'console_scripts': [
'gol=conway.gol:main',
]
}
)