-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (68 loc) · 1.67 KB
/
pyproject.toml
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
[tool.poetry]
name = "pyambit"
version = "0.0.1"
description = "Python implementation of AMBIT data model"
license = "MIT"
authors = [
"Nina Jeliazkova <[email protected]>",
]
maintainers = [
"Luchesar Iliev <[email protected]>",
"Vedrin Jeliazkov <[email protected]>",
]
readme = "README.md"
homepage = "https://ambit.sourceforge.net"
repository = "https://github.com/ideaconsult/pyambit"
keywords = [
"ambit",
"cheminformatics",
"enanomapper",
"nanoinformatics",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
nexusformat = "^1.0.6"
pydantic = "^2.0"
pandas = "^2.2.2"
[tool.poetry.group.dev.dependencies]
pytest = ">8.3.2"
pytest-cov = ">5.0.0"
pre-commit = ">3.8.0"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q"
pythonpath = [
"src",
]
filterwarnings = [
"error", # treat all warnings as errors
"ignore:.*custom tp_new.*in Python 3.14.*:DeprecationWarning",
]
[tool.coverage.run]
relative_files = true
source = [
"pyambit",
"tests",
]
[tool.coverage.paths]
source = [
"src",
"*/site-packages",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"