-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
80 lines (74 loc) · 2.42 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
[tool.poetry]
name = "django-api-forms"
version = "1.0.0-rc.11"
description = "Declarative Django request validation for RESTful APIs"
authors = [
"Jakub Dubec <jakub.dubec@gmail.com>",
"Paul Brown <paul90brown+github@gmail.com>",
"Erik Belák <erik.belak@backbone.sk>"
]
license = "MIT"
keywords = [
"django",
"forms",
"request",
"validation",
"rest",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
]
readme = 'README.md'
[tool.poetry.urls]
Repository = "https://github.com/Sibyx/django_api_forms"
Issues = "https://github.com/Sibyx/django_api_forms/issues"
Documentation = "https://sibyx.github.io/django_api_forms/"
Changelog = "https://github.com/Sibyx/django_api_forms/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.9"
Django = ">=2.0"
Pillow = {version = ">=2.1", optional = true}
msgpack = {version = "*", optional = true}
python-dateutil = {version = "^2.8.2", optional = true}
gdal = {version = "3.8.4", optional = true}
[tool.poetry.dev-dependencies]
flake8 = "^6.0"
mkdocs-material = "^9.1"
toml = "^0.10.2"
coverage = {version = "^7", extras = ["toml"]}
[tool.poetry.extras]
Pillow = ["Pillow"]
msgpack = ["msgpack"]
rrule = ["python-dateutil"]
gdal = ["gdal"]
[tool.coverage.run]
omit = [
'*/tests/*', 'docs/', 'venv/*', 'build/', 'dist/', '.github/', 'django_api_forms.egg-info/', 'runtests.py'
]
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"