|
8 | 8 |
|
9 | 9 | from tdl import __version__ |
10 | 10 |
|
11 | | -setup(name='tdl', |
12 | | - version=__version__, |
13 | | - author='Kyle Stewart', |
14 | | - author_email='4B796C65+pythonTDL@gmail.com', |
15 | | - description='Pythonic port of rogue-like library libtcod.', |
16 | | - long_description='\n'.join([open('README.rst', 'r').read(), |
17 | | - open('CHANGELOG.rst', 'r').read()]), |
18 | | - url='https://github.com/HexDecimal/python-tdl', |
19 | | - download_url='https://pypi.python.org/pypi/tdl', |
20 | | - packages=['tdl'], |
21 | | - package_data={'tdl': ['*.txt', 'lib/*.txt', '*.bmp', '*.png', 'lib/win32/*', |
22 | | - 'lib/darwin/*.dylib', 'lib/linux*/*']}, |
23 | | - #install_requires=['ctypes'], # ctypes requirement causes issues sometimes |
24 | | - classifiers=['Development Status :: 5 - Production/Stable', |
25 | | - 'Environment :: Win32 (MS Windows)', |
26 | | - 'Environment :: MacOS X', |
27 | | - 'Environment :: X11 Applications', |
28 | | - 'Intended Audience :: Developers', |
29 | | - 'License :: OSI Approved :: BSD License', |
30 | | - 'Natural Language :: English', |
31 | | - 'Operating System :: POSIX', |
32 | | - 'Operating System :: MacOS', |
33 | | - 'Operating System :: Microsoft :: Windows', |
34 | | - 'Programming Language :: Python :: 2.6', |
35 | | - 'Programming Language :: Python :: 2.7', |
36 | | - 'Programming Language :: Python :: 3', |
37 | | - 'Programming Language :: Python :: 3.0', |
38 | | - 'Programming Language :: Python :: 3.1', |
39 | | - 'Programming Language :: Python :: 3.2', |
40 | | - 'Programming Language :: Python :: 3.3', |
41 | | - 'Programming Language :: Python :: 3.4', |
42 | | - 'Programming Language :: Python :: Implementation :: CPython', |
43 | | - 'Programming Language :: Python :: Implementation :: PyPy', |
44 | | - 'Topic :: Games/Entertainment', |
45 | | - 'Topic :: Multimedia :: Graphics', |
46 | | - 'Topic :: Software Development :: Libraries :: Python Modules', |
47 | | - ], |
48 | | - keywords = 'portable rogue-like rogue-likes text ctypes ASCII ANSI Unicode libtcod fov', |
49 | | - platforms = ['Windows', 'Mac OS X', 'Linux'], |
50 | | - license = 'New BSD License' |
51 | | - ) |
| 11 | +setup( |
| 12 | + name='tdl', |
| 13 | + version=__version__, |
| 14 | + author='Kyle Stewart', |
| 15 | + author_email='4B796C65+pythonTDL@gmail.com', |
| 16 | + description='Pythonic port of rogue-like library libtcod.', |
| 17 | + long_description='\n'.join([open('README.rst', 'r').read(), |
| 18 | + open('CHANGELOG.rst', 'r').read()]), |
| 19 | + url='https://github.com/HexDecimal/python-tdl', |
| 20 | + download_url='https://pypi.python.org/pypi/tdl', |
| 21 | + packages=['tdl'], |
| 22 | + package_data={'tdl': ['*.txt', '*.rst', 'lib/*.txt', '*.bmp', '*.png', |
| 23 | + 'lib/win32/*', |
| 24 | + 'lib/darwin/*.dylib', |
| 25 | + 'lib/linux*/*']}, |
| 26 | + setup_requires=["cffi>=1.0.0"], |
| 27 | + cffi_modules=["tdl/build_libtcod.py:ffi"], |
| 28 | + install_requires=["cffi>=1.0.0", |
| 29 | + "setuptools>=1.0.0"], |
| 30 | + classifiers=['Development Status :: 5 - Production/Stable', |
| 31 | + 'Environment :: Win32 (MS Windows)', |
| 32 | + 'Environment :: MacOS X', |
| 33 | + 'Environment :: X11 Applications', |
| 34 | + 'Intended Audience :: Developers', |
| 35 | + 'License :: OSI Approved :: BSD License', |
| 36 | + 'Natural Language :: English', |
| 37 | + 'Operating System :: POSIX', |
| 38 | + 'Operating System :: MacOS', |
| 39 | + 'Operating System :: Microsoft :: Windows', |
| 40 | + 'Programming Language :: Python :: 2.6', |
| 41 | + 'Programming Language :: Python :: 2.7', |
| 42 | + 'Programming Language :: Python :: 3', |
| 43 | + 'Programming Language :: Python :: 3.0', |
| 44 | + 'Programming Language :: Python :: 3.1', |
| 45 | + 'Programming Language :: Python :: 3.2', |
| 46 | + 'Programming Language :: Python :: 3.3', |
| 47 | + 'Programming Language :: Python :: 3.4', |
| 48 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 49 | + 'Programming Language :: Python :: Implementation :: PyPy', |
| 50 | + 'Topic :: Games/Entertainment', |
| 51 | + 'Topic :: Multimedia :: Graphics', |
| 52 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 53 | + ], |
| 54 | + keywords = 'portable rogue-like rogue-likes text ctypes ASCII ANSI Unicode libtcod fov', |
| 55 | + platforms = ['Windows', 'Mac OS X', 'Linux'], |
| 56 | + license = 'New BSD License' |
| 57 | + ) |
0 commit comments