-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.47 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
from distutils.core import setup
from magnate import release
setup(name="stellar-magnate",
version=release.__version__,
description="A space-themed commodity trading game",
long_description="""
Stellar Magnate is a space-themed trading game in the spirit of Planetary
Travel by Brian Winn.
""",
author=release.AUTHOR,
author_email="[email protected]",
maintainer=release.MAINTAINER,
maintainer_email="[email protected]",
url="https://github.com/abadger/stellarmagnate",
license=release.LICENSE,
keywords='game trading',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Games/Entertainment',
'Topic :: Games/Entertainment :: Simulation',
],
packages=['magnate', 'magnate.ui'],
scripts=['bin/magnate'],
install_requires=['PyYaml', 'attrs', 'jsonschema', 'kitchen', 'pubmarine >= 0.3', 'straight.plugin', 'twiggy', 'urwid', 'voluptuous'],
)