-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.35 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
[tool.poetry]
name = "ramanchada-api"
version = "0.1.0"
description = "A web API for the RamanChada 2 Raman spectroscopy harmonisation library, incorporating the AMBIT/eNanoMapper data model"
authors = [
"Nina Jeliazkova <[email protected]>",
]
maintainers = [
"Luchesar Iliev <[email protected]>",
"Vedrin Jeliazkov <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/h2020charisma/ramanchada-api"
packages = [
{ include = "rcapi", from = "src" },
]
include = [
"src/rcapi/config/config.yaml",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
apscheduler = "^3.10.1"
fastapi = "^0.101.0"
h5grove = "^1.3.0"
openpyxl = "^3.1.2"
pynanomapper = { path = "extern/pynanomapper", develop = true }
python-multipart = "^0.0.6"
ramanchada2 = { path = "extern/ramanchada2", develop = true }
uvicorn = "^0.27.1"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/h2020charisma/ramanchada-api/issues"
[tool.poetry.scripts]
dev = "scripts.dev_server:main"
[tool.poetry.group.dev.dependencies]
httpx = "^0.27.0"
pytest = "^8.0.1"
[tool.poetry.group.jupyter.dependencies]
jupyter = "^1.0.0"
[tool.pytest.ini_options]
pythonpath = ["src"]
minversion = "7.0"
addopts = "-ra -q"
testpaths = [
"tests",
"integration",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"