Add python_requires to setup.py

This commit is contained in:
2020-02-16 09:46:06 +02:00
parent bfdc9aae28
commit 9ba43ecc2e

View File

@@ -23,6 +23,8 @@ setup(
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English', 'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Chemistry',
], ],
packages=['galvani'], packages=['galvani'],
entry_points={ entry_points={
@@ -30,6 +32,7 @@ setup(
'res2sqlite = galvani.res2sqlite:main', 'res2sqlite = galvani.res2sqlite:main',
], ],
}, },
python_requires='>=3.5',
install_requires=['numpy'], install_requires=['numpy'],
tests_require=['pytest'], tests_require=['pytest'],
) )