-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pymatgen dependency version updated, support for python 2 removed
- Loading branch information
Showing
1 changed file
with
3 additions
and
5 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 |
---|---|---|
|
@@ -12,20 +12,18 @@ def readme(): | |
setup( | ||
name="pycdt", | ||
packages=find_packages(), | ||
version="2.0.3", | ||
install_requires=["numpy>=1.18.1", "pymatgen>=2020.1.28", "matplotlib>=3.1""monty>=3.0.2"], | ||
version="2.0.4", | ||
install_requires=["numpy>=1.18.1", "pymatgen>=2020.4.29", "matplotlib>=3.1""monty>=3.0.2"], | ||
package_data={"pycdt.utils": ["*.yaml"]}, | ||
author="Danny Broberg, Bharat Medasani, Nils Zimmerman", | ||
author_email="[email protected]", | ||
maintainer="Bharat Medasani", | ||
maintainer_email="[email protected]", | ||
#url="http://github.com/mbkumar/pycdcd", | ||
url="http://bitbucket.org/mbkumar/pycdt", | ||
description="PyCDT is a python package to facilitate " | ||
"DFT calculations for point defects in solids", | ||
long_description=readme(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Development Status :: 2 - Release", | ||
|