forked from tony/django-docutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
124 lines (111 loc) · 2.71 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[tool.poetry]
name = "django-docutils"
version = "0.6.0"
description = "Documentation Utilities (Docutils, reStructuredText) for django.)"
license = "MIT"
authors = [
"Tony Narlock <[email protected]>",
]
readme = "README.md"
packages = [
{ include = "django_docutils" },
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
keywords = ["django", "docutils", "reStructuredText", "rst", "reST"]
homepage = "https://django-docutils.git-pull.com"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tony/django-docutils/issues"
Documentation = "https://django-docutils.git-pull.com"
Repository = "https://github.com/tony/django-docutils"
Changes = "https://github.com/tony/django-docutils/blob/master/CHANGES"
"Q & A" = "https://github.com/tony/django-docutils/discussions"
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=3.2"
docutils = "*"
tldextract = { version = "*", optional = true }
tqdm = { version = "*", optional = true }
pygments = "<3"
django-extensions = "*"
django-randomslugfield = "*"
django-slugify-processor = "*"
django-dirtyfields = ">1.3.0"
lxml = "*"
bitly-api-py3 = "*"
[tool.poetry.dev-dependencies]
### Docs ###
sphinx = "*"
furo = "*"
sphinx-autobuild = "*"
sphinx-autodoc-typehints = "*"
sphinx-click = "*"
sphinx-issues = "*"
sphinx-inline-tabs = "*"
sphinxext-opengraph = "*"
sphinx-copybutton = "*"
sphinxext-rediraffe = "*"
myst_parser = "*"
### Testing ###
pytest = "*"
pytest-rerunfailures = "*"
pytest-mock = "*"
pytest-watcher = "^0.2.3"
factory-boy = "*"
pytest-factoryboy = "*"
pytest-django = "*"
dj-inmemorystorage = "*"
responses = "*"
### Coverage ###
codecov = "*"
coverage = "*"
pytest-cov = "*"
### Format ###
black = "*"
isort = "*"
### Lint ###
flake8 = "*"
mypy = "*"
[tool.poetry.extras]
favicon = ["tldextract", "tqdm"]
intersphinx = ["tqdm"]
# Development stuff
docs = [
"sphinx",
"sphinx-issues",
"sphinx-click",
"sphinx-autodoc-typehints",
"sphinx-autobuild",
"sphinxext-rediraffe",
"sphinx-copybutton",
"sphinxext-opengraph",
"sphinx-inline-tabs",
"myst_parser",
"furo",
]
test = [
"pytest",
"pytest-rerunfailures",
"pytest-mock",
"pytest-watcher",
"factory-boy",
"pytest-factoryboy",
"pytest-django",
"dj-inmemorystorage",
"responses",
]
coverage = ["codecov", "coverage", "pytest-cov"]
format = ["black", "isort"]
lint = ["flake8", "mypy"]