-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* migrate to `uv` * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * move actions to uv * bump version --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ed78db8
commit 229ad9e
Showing
9 changed files
with
1,393 additions
and
1,867 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
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 @@ | ||
3.11 |
This file was deleted.
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,42 +1,31 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "znh5md" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
description = "ASE Interface for the H5MD format." | ||
authors = ["zincwarecode <[email protected]>"] | ||
authors = [ | ||
{ name = "Fabian Zills", email = "[email protected]" }, | ||
] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"ase>=3.24.0", | ||
"h5py>=3.12.1", | ||
"tqdm>=4.67.1", | ||
"typer>=0.15.1", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
h5py = "^3" | ||
ase = "^3.23" | ||
tqdm = "^4" | ||
typer = {extras = ["all"], version = "^0"} | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.2.0" | ||
pre-commit = "^2.20.0" | ||
ruff = "^0.4" | ||
mdanalysis = "^2.8" | ||
coverage = "^7.5.3" | ||
pyh5md = "^1.0.0" | ||
pytest-benchmark = {extras = ["histogram"], version = "^4.0.0"} | ||
networkx = "^3.3" | ||
rdkit2ase = "^0.1.4" | ||
|
||
|
||
[tool.poetry.group.benchmark.dependencies] | ||
pandas = "^2.2.2" | ||
chemfiles = "^0.10.4" | ||
mdtraj = "^1.10.0" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.poetry.scripts] | ||
znh5md = 'znh5md.cli:app' | ||
[project.scripts] | ||
znh5md = "znh5md.cli:app" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
[project.urls] | ||
Repository = "https://github.com/zincware/ZnH5MD" | ||
Releases = "https://github.com/zincware/ZnH5MD/releases" | ||
Discord = "https://discord.gg/7ncfwhsnm4" | ||
|
||
[tool.ruff.lint] | ||
select = ["E", "F", "N", "C", "I"] | ||
|
@@ -50,5 +39,20 @@ skip = "poetry.lock,*.ipynb" | |
[tool.pytest.ini_options] | ||
addopts = "-m 'not benchmark'" | ||
|
||
[tool.poetry.plugins."ase.ioformats"] | ||
[dependency-groups] | ||
dev = [ | ||
"chemfiles>=0.10.4", | ||
"coverage>=7.6.10", | ||
"mdanalysis>=2.8.0", | ||
"mdtraj>=1.10.2", | ||
"networkx>=3.4.2", | ||
"numpy<2", | ||
"pandas>=2.2.3", | ||
"pyh5md>=1.0.0", | ||
"pytest>=8.3.4", | ||
"pytest-benchmark[histogram]>=5.1.0", | ||
"rdkit2ase>=0.1.4", | ||
] | ||
|
||
[project.entry-points."ase.ioformats"] | ||
znh5md = "znh5md.ase_plugin:znh5md_format" |
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.