Skip to content

Commit

Permalink
setup.py add python_requires=">=3.9"
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Nov 6, 2023
1 parent e11ece3 commit 4e9afb6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# Copyright (c) Materials Virtual Lab
# Distributed under the terms of the Modified BSD License.

from setuptools import setup, find_namespace_packages

import os

from setuptools import find_namespace_packages, setup

SETUP_PTH = os.path.dirname(os.path.abspath(__file__))

with open(os.path.join(SETUP_PTH, "README.rst")) as f:
Expand All @@ -15,9 +12,10 @@
name="pymatgen-analysis-myaddon",
packages=find_namespace_packages(include=["pymatgen.analysis.*"]),
version="0.0.1",
install_requires=["pymatgen>=2022.0.3"],
install_requires=["pymatgen>=2023.11.7"],
extras_require={},
package_data={},
python_requires=">=3.9",
author="materials virtual lab",
author_email="[email protected]",
maintainer="materials virtual lab",
Expand All @@ -28,8 +26,9 @@
keywords=["pymatgen"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
Expand Down

0 comments on commit 4e9afb6

Please sign in to comment.