Skip to content

Commit 907c87c

Browse files
committed
cleaned up setup.py now that this module is mostly pure
1 parent a37a619 commit 907c87c

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

setup.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,8 @@ def run(self):
3939
url='https://github.com/HexDecimal/python-tdl',
4040
download_url='https://pypi.python.org/pypi/tdl',
4141
packages=['tdl'],
42-
package_data={'tdl': ['*.txt', '*.rst', 'lib/*.txt', '*.bmp', '*.png',
43-
'lib/win32/*',
44-
'lib/darwin/*.dylib',
45-
'lib/linux*/*']},
46-
setup_requires=["cffi>=1.0.0"],
47-
cffi_modules=["build_libtcod.py:ffi"],
48-
install_requires=["cffi>=1.0.0"],
42+
package_data={'tdl': ['*.txt', '*.rst', '*.bmp', '*.png']},
43+
install_requires=["libtcod-cffi>=0.1.0"],
4944
cmdclass={'build_docs': build_docs},
5045
classifiers=['Development Status :: 5 - Production/Stable',
5146
'Environment :: Win32 (MS Windows)',
@@ -57,7 +52,6 @@ def run(self):
5752
'Operating System :: POSIX',
5853
'Operating System :: MacOS',
5954
'Operating System :: Microsoft :: Windows',
60-
'Programming Language :: Python :: 2.6',
6155
'Programming Language :: Python :: 2.7',
6256
'Programming Language :: Python :: 3',
6357
'Programming Language :: Python :: 3.0',
@@ -71,7 +65,7 @@ def run(self):
7165
'Topic :: Multimedia :: Graphics',
7266
'Topic :: Software Development :: Libraries :: Python Modules',
7367
],
74-
keywords = 'portable rogue-like rogue-likes text cffi ASCII ANSI Unicode libtcod fov',
68+
keywords = 'rogue-like rogue-likes text cffi ASCII ANSI Unicode libtcod fov',
7569
platforms = ['Windows', 'Mac OS X', 'Linux'],
76-
license = 'New BSD License'
70+
license = 'Simplified BSD License'
7771
)

0 commit comments

Comments
 (0)