setup.py cleanup

This commit is contained in:
Tal Einat 2014-04-20 13:40:55 +03:00
parent d11d5bb40e
commit 97b646ee77
1 changed files with 1 additions and 7 deletions

View File

@ -41,11 +41,7 @@ setup(
], ],
package_dir={'fuzzysearch': 'fuzzysearch'}, package_dir={'fuzzysearch': 'fuzzysearch'},
ext_modules=[_substitutions_only_module, _common_module, _generic_search_module], ext_modules=[_substitutions_only_module, _common_module, _generic_search_module],
include_package_data=True,
install_requires=[],
use_2to3=True,
license="MIT", license="MIT",
zip_safe=False,
keywords='fuzzysearch', keywords='fuzzysearch',
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 3 - Alpha',
@ -56,9 +52,7 @@ setup(
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
], ],
test_suite='tests', )
)