Python3 compatibility

This commit is contained in:
Ilya Semenov 2016-06-17 14:25:42 +06:00
parent bc496f64be
commit 916ee151ec
13 changed files with 63 additions and 40 deletions

View file

@ -22,12 +22,14 @@ setuptools.setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Natural Language :: English',
'Natural Language :: Russian'],
keywords=['gamedev', 'game', 'game development', 'names', 'names generation'],
packages=setuptools.find_packages(),
install_requires=['unicodecsv'],
install_requires=['six', 'unicodecsv'],
include_package_data=True,
test_suite = 'tests',
)