-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version can now be shown with tp.__version__ or by passing the --version option to any tp cli function help is now shown with -h as well as --help docs updates
- Loading branch information
Kieran B. Spooner
committed
Apr 2, 2024
1 parent
c7950a9
commit ea5ba1c
Showing
20 changed files
with
262 additions
and
158 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
|
@@ -3,10 +3,10 @@ | |
__name__ = 'ThermoParser' | ||
__author__ = 'Kieran B. Spooner' | ||
__copyright__ = 'Copyright Scanlon Materials Theory Group (2024)' | ||
__version__ = '3.1.3' | ||
__version__ = '3.1.4' # Remember to update the main README header too! | ||
__maintainer__ = 'Kieran B. Spooner' | ||
__email__ = '[email protected]' | ||
__date__ = 'March 21st 2024' | ||
__date__ = 'April 1st 2024' | ||
|
||
import os | ||
import setuptools | ||
|
@@ -63,6 +63,6 @@ def __init__(self, *args, **kwargs): | |
install_requires=['click', 'h5py', 'matplotlib', 'numpy', 'pymatgen', | ||
'pyyaml', 'scipy', 'setuptools', 'wheel'], | ||
extras_require={'docs': ['sphinx', 'sphinx_rtd_theme']}, | ||
python_requires='>=3.6', | ||
python_requires='>=3.8', | ||
cmdclass={'install': PostInstallMoveFile}, | ||
entry_points={'console_scripts': ['tp = tp.cli.cli:tp_cli']}) |
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
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
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
Oops, something went wrong.