-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.68 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
[tool.poetry]
package-mode = false
name = "spectrastream"
description = "Web-based spectra harmonization tool"
license = "MIT"
authors = [
"Evgeniy Marinov <[email protected]>",
"Sergey Soroka <[email protected]>",
"Luchesar ILIEV <[email protected]>",
"Nina Jeliazkova <[email protected]>",
]
maintainers = [
"Luchesar Iliev <[email protected]>",
"Vedrin Jeliazkov <[email protected]>",
]
readme = "README.md"
homepage = "https://spectrastream.adma.ai"
repository = "https://github.com/h2020charisma/spectrastream"
keywords = [
"spectroscopy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"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 :: User Interfaces",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = ">=3.9,!=3.9.7,<3.13"
streamlit = "^1.35.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
pytest = "^8.2.1"
pytest-cov = "^5.0.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 = [
"app",
"tests",
]
[tool.coverage.paths]
source = [
"src",
"*/site-packages",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"