Skip to content

Commit

Permalink
Add python_requires to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo-rodrigues committed Oct 29, 2019
1 parent 01cbcf0 commit 2d547be
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Expand Up @@ -8,7 +8,9 @@
from setuptools import find_packages
import os

python_requires = "!=2.*, >=3.6"
install_requires = ["scipy", "numpy", "pandas"]
setup_requires = ["pytest-runner"]
tests_requires = ["pytest", "zfit"]


Expand All @@ -32,8 +34,9 @@ def get_version():
license='BSD 3-Clause License',
packages=find_packages(),
test_suite="tests",
python_requires=python_requires,
install_requires=install_requires,
setup_requires=["pytest-runner"],
setup_requires=setup_requires,
tests_require=tests_requires,
keywords=[
'HEP', 'statistics',
Expand All @@ -48,7 +51,7 @@ def get_version():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Development Status :: 5 - Production/Stable',
'Development Status :: 4 - Beta'
],
platforms="Any",
)

0 comments on commit 2d547be

Please sign in to comment.