-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (70 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (70 loc) · 1.56 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
84
85
86
87
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "falk"
description = "Responsive server components in Python"
requires-python = ">=3.9"
dynamic = ["version"]
authors = [
{ name="Florian Scherf", email="mail@florianscherf.de" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Framework :: Django",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
"jinja2",
"simple-logging-setup",
"aiofiles",
"python-multipart",
]
[project.optional-dependencies]
dev = [
"uvicorn[standard]",
"rlpython",
]
test = [
"coverage==7.10.4",
"pytest==8.4.1",
"pytest-playwright==0.7.2",
"requests",
"rlpython",
"uvicorn[standard]",
"starlette",
"Django~=5.2",
]
docs = [
"mkdocs==1.6.1",
"mkdocstrings[python]==0.28.2",
"mkdocs-material==9.6.6",
"grip==4.6.2",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_file = "falk/version.py"
[tool.setuptools.packages.find]
include = ["falk*"]
[tool.setuptools.package-data]
"falk" = ["**"]
[tool.setuptools.exclude-package-data]
"*" = [
".*",
"~*",
"*.swp",
"*.pyc",
]
[project.entry-points.pytest11]
falk = "falk.pytest_plugin"