1
|
|
|
#!/usr/bin/env python2 |
2
|
|
|
|
3
|
|
|
from setuptools import setup |
4
|
|
|
|
5
|
|
|
setup( |
6
|
|
|
name='tdl', |
7
|
|
|
version=open('tdl/version.txt', 'r').read(), |
8
|
|
|
author='Kyle Stewart', |
9
|
|
|
author_email='[email protected]', |
10
|
|
|
description='Pythonic cffi port of libtcod.', |
11
|
|
|
long_description='\n'.join([open('README.rst', 'r').read(), |
12
|
|
|
open('CHANGELOG.rst', 'r').read()]), |
13
|
|
|
url='https://github.com/HexDecimal/python-tdl', |
14
|
|
|
download_url='https://pypi.python.org/pypi/tdl', |
15
|
|
|
packages=['tdl'], |
16
|
|
|
package_data={'tdl': ['*.txt', '*.rst', '*.bmp', '*.png']}, |
17
|
|
|
install_requires=["libtcod-cffi>=0.2.8,<2"], |
18
|
|
|
classifiers=['Development Status :: 5 - Production/Stable', |
19
|
|
|
'Environment :: Win32 (MS Windows)', |
20
|
|
|
'Environment :: MacOS X', |
21
|
|
|
'Environment :: X11 Applications', |
22
|
|
|
'Intended Audience :: Developers', |
23
|
|
|
'License :: OSI Approved :: BSD License', |
24
|
|
|
'Natural Language :: English', |
25
|
|
|
'Operating System :: POSIX', |
26
|
|
|
'Operating System :: MacOS', |
27
|
|
|
'Operating System :: Microsoft :: Windows', |
28
|
|
|
'Programming Language :: Python :: 2.7', |
29
|
|
|
'Programming Language :: Python :: 3', |
30
|
|
|
'Programming Language :: Python :: 3.3', |
31
|
|
|
'Programming Language :: Python :: 3.4', |
32
|
|
|
'Programming Language :: Python :: 3.5', |
33
|
|
|
'Programming Language :: Python :: Implementation :: CPython', |
34
|
|
|
'Programming Language :: Python :: Implementation :: PyPy', |
35
|
|
|
'Topic :: Games/Entertainment', |
36
|
|
|
'Topic :: Multimedia :: Graphics', |
37
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules', |
38
|
|
|
], |
39
|
|
|
keywords = 'rogue-like rogue-likes text cffi ASCII ANSI Unicode libtcod fov', |
40
|
|
|
platforms = ['Windows', 'Mac OS X', 'Linux'], |
41
|
|
|
license = 'Simplified BSD License', |
42
|
|
|
tests_require = ['nose2', 'cov-core'], |
43
|
|
|
test_suite='nose2.collector.collector', |
44
|
|
|
) |
45
|
|
|
|