This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
81 lines (71 loc) · 1.96 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
[project]
name = "flect"
version = "0.2.10"
description = "Turning ideas into web app fast."
authors = [
{name = "Chaoying", email = "[email protected]"},
]
dependencies = [
"fastapi>=0.108.0",
"uvicorn>=0.25.0",
"pydantic>=2.6.1",
"pyromark>=0.3.0",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Internet",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Framework :: Pydantic :: 2",
"Framework :: FastAPI",
]
[project.urls]
Homepage = "https://github.com/Chaoyingz/flect"
Documentation = "https://flect.celerforge.com/"
Source = "https://github.com/Chaoyingz/flect"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"ruff>=0.1.12",
"pyright>=1.1.347",
"coverage>=7.4.1",
"pytest>=7.4.4",
"pytest-asyncio>=0.23.4",
"httpx>=0.27.0",
]
[tool.hatch.build]
artifacts = ["src/python-flect/src/static"]
only-include = ["src/python-flect/src/static", "src/python-flect/src/flect"]
[tool.hatch.build.targets.wheel]
packages = ["src/python-flect/src/flect"]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
extend-select = ["Q", "RUF100", "UP", "I"]
[tool.pyright]
include = ["src/python-flect/src/flect"]
extraPaths = ["src/python-flect/src/flect"]
[tool.coverage.run]
omit = ["src/python-flect/tests/app/"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-s -p no:warnings"
cache_dir = ".pytest_cache/"
testpaths = [
"src/python-flect/tests",
"src/python-flect/src/flect",
]