forked from virocon-organization/virocon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# https://packaging.python.org/en/latest/specifications/pyproject-toml/
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "virocon"
dynamic = ["version"]
description = "ViroCon is a software to compute environmental contours"
readme = "README.rst"
requires-python = ">=3.7"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "virocon team", email = "virocon@uni-bremen.de" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
]
urls.source = "https://github.com/virocon-organization/virocon"
urls.documentation = "https://virocon.readthedocs.io"
dependencies = [
"matplotlib>=2.2.0",
"networkx",
"numpy",
"pandas",
"scikit-learn",
"scipy"
]
# https://docs.astral.sh/uv/concepts/projects/dependencies/#dependency-groups
[dependency-groups]
lint = ["ruff"]
test = ["pytest", "pytest-cov", "coverage",]
docs = ["Sphinx"]
[tool.uv]
default-groups = "all"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.setuptools]
packages = ["virocon"]
dynamic.version = { attr = "virocon.__version__" }
[tool.pytest.ini_options]
minversion = "6.0"
required_plugins = "pytest-cov"
addopts = "-ra --cov-config=.coveragerc --cov=virocon --doctest-modules"
testpaths = [
"tests",
"virocon",
]
filterwarnings = [
"error", # raise warnings as errors during test
]
[tool.ruff]
target-version = "py313"