-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.24 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
[project]
name = "Sanic-WTF"
description = "Sanic-WTF - Sanic meets WTForms"
authors = [
{name = "Philip Xu", email = "[email protected]"},
]
dependencies = [
"sanic>=21.3.0",
"wtforms>=3.0.1",
]
dynamic = ["version"]
requires-python = ">=3.7"
readme = "README.rst"
license = {text = "BSD-New"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/pyx/sanic-wtf/"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
doc = [
"Sphinx>=4.3.2",
]
lint = [
"flake8>=5.0.4",
]
test = [
"sanic-testing>=23.6.0",
"pytest-cov>=4.1.0",
]
[tool.pdm.scripts]
doc_html = {shell = "cd docs; make html; cd .."}
doc_pdf = {shell = "cd docs; make latexpdf; cd .."}
docs = {composite = ["doc_html", "doc_pdf"]}
lint = "flake8 sanic_wtf tests"
test = "pytest"
[tool.pdm.version]
source = "file"
path = "sanic_wtf/__init__.py"