-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 919 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qeasy-datahub"
version = "0.1.0"
description = "QEasy DataHub FastAPI starter for the QEasy open-source ecosystem"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [
{ name = "广东轻亿云软件科技有限公司" }
]
dependencies = [
"fastapi>=0.115,<1.0",
"uvicorn[standard]>=0.30,<1.0",
"pydantic-settings>=2.6,<3.0"
]
[project.urls]
Homepage = "https://www.qeasy.cloud/"
Documentation = "https://www.qeasy.cloud/"
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9.0",
"httpx>=0.27,<1.0"
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]