-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
90 lines (82 loc) · 1.86 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
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "django-indieweb"
authors = [
{name = "Jochen Wersdörfer", email = "[email protected]"},
]
dynamic = ["version", "description"]
requires-python = ">=3.9"
keywords = [
"indieweb",
"indieauth",
"micropub",
"django",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Topic :: Internet",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"Django",
"django-model-utils",
"django-braces",
"pytz",
"setuptools",
]
[project.optional-dependencies]
test = [
"django-environ",
"pytest >= 6",
"pytest-cov >= 3",
"pytest-django",
]
doc = [
"sphinx-rtd-theme",
]
dev = [
"black",
"flake8",
"isort",
"requests",
"tox",
]
[project.urls]
Documentation = "https://django-indieweb.readthedocs.io/en/latest/"
Source = "https://github.com/ephes/django-indieweb"
[tool.flit.module]
name = "indieweb"
[tool.isort]
profile = "black"
[tool.black]
line-length = 119
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
minversion = "6.0"
testpaths = ["tests"]
filterwarnings = [
"ignore::django.utils.deprecation.RemovedInDjango50Warning",
"ignore::DeprecationWarning",
]
addopts = [
"--reuse-db",
"--no-migrations",
]
norecursedirs = [
".git",
"docs",
]