-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.49 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
69
70
71
72
73
74
75
[project]
name = "pyqsartoolbox"
dynamic = ["version"]
description = "Python client for the local QSAR Toolbox Web API"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Ali A. Eftekhari", email = "e.eftekhari@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
"pandas>=1.5.0"
]
[project.urls]
Homepage = "https://github.com/USEtox/PyQSARToolbox"
Documentation = "https://usetox.github.io/PyQSARToolbox/"
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-cov>=5.0",
"mkdocs>=1.5",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.25",
"ruff>=0.5.0"
]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.25"
]
test = [
"pytest>=8.2",
"pytest-cov>=5.0"
]
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.coverage.run]
source = ["pyqsartoolbox"]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.ruff]
line-length = 100
target-version = "py39"
select = ["E", "F", "W"]
[tool.ruff.per-file-ignores]
"tests/*" = ["E402"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
fallback_version = "0.0.0"
[build-system]
requires = ["hatchling>=1.24", "hatch-vcs>=0.4"]
build-backend = "hatchling.build"