Skip to content

Commit

Permalink
add metadata to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
arturtoshev committed Jan 2, 2024
1 parent eb0deea commit dd6ac20
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,40 @@ name = "lagrangebench"
version = "0.0.2"
description = "LagrangeBench: A Lagrangian Fluid Mechanics Benchmarking Suite"
authors = [
"Artur Toshev, Gianluca Galletti <[email protected]>"
]
maintainers = [
"Artur Toshev <[email protected]>",
"Gianluca Galletti <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://lagrangebench.readthedocs.io/"
documentation = "https://lagrangebench.readthedocs.io/"
repository = "https://github.com/tumaer/lagrangebench"
keywords = [
"smoothed-particle-hydrodynamics",
"benchmark-suite",
"lagrangian-dynamics",
"graph-neural-networks",
"lagrangian-particles",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]

[tool.poetry.dependencies]
python = ">=3.9,<=3.11"
Expand Down Expand Up @@ -53,6 +82,8 @@ exclude = [
".git",
".venv",
"venv",
"docs/_build",
"dist"
]
show-fixes = true
line-length = 88
Expand All @@ -67,9 +98,10 @@ select = [
]

[tool.pytest.ini_options]
testpaths = ["./tests"]
testpaths = "tests/"
addopts = "--cov=lagrangebench"
filterwarnings = [
# ignore all deprecation warnings except from lagrangebench
"ignore::DeprecationWarning:^(?!.*lagrangebench).*"
]

Expand Down

0 comments on commit dd6ac20

Please sign in to comment.