diff --git a/setup.py b/setup.py index 5eb43042d..34d688071 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ package_data={"maggma": ["py.typed"]}, zip_safe=False, include_package_data=True, + python_requires=">=3.8", install_requires=[ "setuptools", "ruamel.yaml<0.18", @@ -54,6 +55,7 @@ "notebook_runner": ["IPython>=8.11", "nbformat>=5.0", "regex>=2020.6"], "azure": ["azure-storage-blob>=12.16.0", "azure-identity>=1.12.0"], }, + tests_require=["pytest", "starlette[full]"], classifiers=[ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", @@ -70,6 +72,4 @@ "Topic :: Scientific/Engineering", ], entry_points={"console_scripts": ["mrun = maggma.cli:run"]}, - tests_require=["pytest", "starlette[full]"], - python_requires=">=3.8", )