-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.22 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
from setuptools import setup, find_packages
import pyrogi
def get_readme_text():
with open('README.rst') as f:
return f.read()
setup(
name = 'pyrogi',
packages = find_packages(),
install_requires = ['pygame'],
version = pyrogi.VERSION,
description = 'A feature-rich roguelike game engine focused on ease of development and beauty through text graphics.',
long_description = get_readme_text(),
license = 'GPLv3',
author = 'Ben Weedon',
author_email = '[email protected]',
url = 'https://github.com/benweedon/pyrogi',
download_url = 'https://github.com/benweedon/pyrogi/archive/v0.1.0.tar.gz',
keywords = ['game', 'engine', 'game-engine', 'roguelike', 'ascii'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Games/Entertainment',
],
)