-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup.py add python_requires=">=3.9"
- Loading branch information
Showing
1 changed file
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
@@ -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", | ||
|
@@ -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", | ||
|