-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
83 lines (76 loc) · 1.92 KB
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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "freeadmin"
version = "0.1.0"
description = "Reusable administrative interface extracted from Cortex."
authors = [{ name = "Timur Kady", email = "timurkady@yandex.com" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
license-files = ["LICENSE"]
keywords = ["fastapi", "admin", "tortoise-orm", "dashboard"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: FastAPI",
"License :: OSI Approved :: GNU Affero General Public License v3",
]
dependencies = [
"click>=8.1,<9.0",
"fastapi>=0.110",
"httpx>=0.28,<1.0",
"starlette>=0.37,<1.0",
"jinja2>=3.1,<4.0",
"itsdangerous>=2.1,<3.0",
"tortoise-orm>=0.20",
"python-multipart>=0.0.7,<0.1",
"pydantic>=1.10,<3.0",
"pydantic-settings>=2.0,<3.0",
"pyjwt>=2.8,<3.0",
"openpyxl>=3.1,<4.0",
"lxml>=4.9,<6.0"
]
[project.scripts]
freeadmin = "freeadmin.utils.cli.entry:cli"
[project.urls]
Homepage = "https://github.com/TimurKady/freeadmin"
Source = "https://github.com/TimurKady/freeadmin"
Documentation = "https://github.com/TimurKady/freeadmin#readme"
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.hatch.build.targets.wheel]
packages = ["freeadmin"]
exclude = [
"docs",
"example",
"tests",
]
[tool.hatch.build.targets.wheel.force-include]
"COMMERCIAL-LICENSE.md" = "COMMERCIAL-LICENSE.md"
[tool.hatch.build.targets.sdist]
include = [
"freeadmin",
"docs",
"example",
"tests",
"LICENSE",
"COMMERCIAL-LICENSE.md",
"README.md",
"MANIFEST.in",
"pyproject.toml",
]
exclude = [
"docs",
"example",
"tests",
]
[tool.setuptools.package-data]
freeadmin = [
"static/**/*",
"templates/**/*",
"core/templates/**/*",
"core/interface/templates/**/*",
]