-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.27 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
[project]
name = "fileglancer-central"
version = "0.1.0"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
# Runtime dependencies below
dependencies = [
"fastapi >=0.115",
"uvicorn >=0.34",
"sqlalchemy >=2.0",
"aiosqlite >=0.21.0",
"pandas >=2.2.3",
"pydantic >=2.10",
"pydantic-settings >=2.8",
"pydantic-settings[yaml]",
"loguru >=0.7.2",
"atlassian-python-api >=3.41",
"lxml >=5.3.1"
]
classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
[tool.setuptools.packages.find]
exclude = ["docker"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["osx-arm64", "osx-64", "linux-64"]
[tool.pixi.pypi-dependencies]
fileglancer-central = { path = ".", editable = true }
[tool.pixi.tasks]
dev-install = "pip install -e ."
dev-launch = "pixi run uvicorn fileglancer_central.app:app --host 0.0.0.0 --workers 1 --port 7878 --reload"
[tool.pixi.feature.test.tasks]
test = "pytest"
[tool.pixi.environments]
default = {features = [], solve-group = "default"}
test = {features = ["test"], solve-group = "default"}
[tool.pixi.dependencies]
python = "3.12.*"
pip = ">=25.0.1,<26"
ipykernel = "*"