-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (81 loc) · 2.14 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "lotus_search"
version = "0.1.2"
description = "Lotus Search"
authors = [
{name = "Jonathan Bisson", email = "[email protected]"},
{name = "Adriano Rutz", email = "[email protected]"},
]
requires-python = "<3.14.0,>=3.13.0"
keywords = [
"LinkedOpenData",
"LOTUS",
"Wikidata",
]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Pytest",
"Framework :: tox",
"Framework :: Sphinx",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
license = {text = "LICENSE"}
readme = "README.md"
dependencies = [
"dash<3.0.0,>=2.18.2",
"dash-bootstrap-components<2.0.0,>=1.6.0",
"fastapi<1.0.0,>=0.115.6",
"fastapi-versioning<1.0.0,>=0.10.0",
"flask-caching<3.0.0,>=2.3.0",
"gunicorn<24.0.0,>=23.0.0",
"numpy<3.0.0,>=2.2.1",
"orjson<4.0.0,>=3.10.14",
"pandas<3.0.0,>=2.2.3",
"pydantic<3.0.0,>=2.10.5",
"requests<3.0.0,>=2.32.3",
"rdkit<2025.0.0,>=2024.9.4",
"sqlalchemy<3.0.0,>=2.0.37",
"tqdm<5.0.0,>=4.67.1",
"uvicorn<1.0.0,>=0.34.0",
]
[dependency-groups]
dev = [
"black<25.0.0,>=24.10.0",
"coverage<8.0.0,>=7.6.10",
"isort<6.0.0,>=5.13.2",
"pytest<9.0.0,>=8.3.4",
"pytest-asyncio<1.0.0,>=0.25.2",
"pytest-cov<7.0.0,>=6.0.0",
"pytest-mock<4.0.0,>=3.14.0",
"pytest-xdist<4.0.0,>=3.6.1",
"requests-mock<2.0.0,>=1.12.1",
"tox<5.0.0,>=4.23.2",
]
[project.scripts]
start = "app:main"
[project.urls]
homepage = "https://search.nprod.net"
repository = "https://github.com/lotusnprod/lotus-search"
documentation = "https://github.com/lotusnprod/lotus-search"
[tool.pdm.build]
includes = ["*.py"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = [
"ignore:The module rdkit.Chem.MolStandardize:DeprecationWarning"
]
pythonpath = [
".", "src",
]
testpaths = "tests"
[tool.isort]
profile = "black"