1
0
mirror of https://github.com/gsi-upm/soil synced 2025-09-17 21:52:21 +00:00

Make py3 compatibility explicit

This commit is contained in:
J. Fernando Sánchez
2017-10-09 11:38:04 +02:00
parent e8988015e2
commit eafecc9e5e
8 changed files with 51 additions and 726 deletions

View File

@@ -28,7 +28,16 @@ setup(
download_url='https://github.com/gsi-upm/soil/archive/{}.tar.gz'.format(
__version__),
keywords=['agent', 'social', 'simulator'],
classifiers=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3'],
install_requires=install_reqs,
tests_require=test_reqs,
setup_requires=['pytest-runner', ],