-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add conversion specification for documentation * Remove upper limits on dependencies * Update install.yml * Update installation instructions * Update version number * Update link to website * Update copyright
- Loading branch information
1 parent
0c00d6e
commit c9aaaed
Showing
9 changed files
with
1,506 additions
and
1,061 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
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,4 +1,4 @@ | ||
calculation | ||
Calculation | ||
=========== | ||
|
||
.. autoclass:: py4vasp.Calculation | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
latest: | ||
- dirhtml | ||
- Calculation: | ||
- dirhtml/Calculation | ||
- raw: | ||
- dirhtml/raw | ||
- dirhtml/api/py4vasp.raw.* | ||
- data: | ||
- dirhtml/data | ||
- dirhtml/api/py4vasp.data.* | ||
- exception: | ||
- dirhtml/exception | ||
- dirhtml/api/py4vasp.exception.* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "py4vasp" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
description = "Tool for assisting with the analysis and setup of VASP calculations." | ||
authors = [ | ||
"VASP Software GmbH <[email protected]>", | ||
|
@@ -11,33 +11,36 @@ authors = [ | |
] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
homepage = "https://vasp.at/py4vasp" | ||
homepage = "https://vasp.at/py4vasp/latest" | ||
repository = "https://github.com/vasp-dev/py4vasp" | ||
|
||
[tool.poetry.urls] | ||
"Support Forum" = "https://vasp.at/forum/" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
numpy = "^1.23.0" | ||
h5py = "^3.7.0" | ||
pandas = "^1.4.3" | ||
nglview = "^3.0.3" | ||
ase = "^3.22.1" | ||
mdtraj = "!=1.9.7,^1.9.6" | ||
mrcfile = "^1.3.0" | ||
plotly = "^5.9.0" | ||
kaleido = "!=0.2.1.post1,^0.2.1" | ||
# We actually do not want the <4 restriction here. This is due to requests 2.28.2 having | ||
# this restriction, which will hopefully be released in a future release there | ||
#python = ">=3.8" | ||
python = ">=3.8,<4" | ||
numpy = ">=1.23.0" | ||
h5py = ">=3.7.0" | ||
pandas = ">=1.4.3" | ||
nglview = ">=3.0.3" | ||
ase = ">=3.22.1" | ||
mdtraj = "!=1.9.7,>=1.9.6" | ||
mrcfile = ">=1.3.0" | ||
plotly = ">=5.9.0" | ||
kaleido = "!=0.2.1.post1,>=0.2.1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^7.1.2" | ||
pytest-cov = "^3.0.0" | ||
pylint = "^2.14.3" | ||
Sphinx = "^5.0.2" | ||
black = "^22.6.0" | ||
hypothesis = "^6.48.1" | ||
isort = "^5.10.1" | ||
sphinx-automodapi = "^0.14.1" | ||
pytest = ">=7.1.2" | ||
pytest-cov = ">=3.0.0" | ||
pylint = ">=2.14.3" | ||
Sphinx = ">=5.0.2" | ||
black = ">=22.6.0" | ||
hypothesis = ">=6.48.1" | ||
isort = ">=5.10.1" | ||
sphinx-automodapi = ">=0.14.1" | ||
|
||
[tool.poetry.scripts] | ||
error-analysis = "py4vasp.scripts.error_analysis:main" | ||
|
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