-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.23 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
[tool.poetry]
name = "hipo-drf-exceptions"
version = "0.1.8"
description = "A Django app for returning consistent, verbose and easy to parse error messages on Django Rest Framework backends."
authors = ["Hipo <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/hipo/hipo-drf-exceptions"
repository = "https://github.com/hipo/hipo-drf-exceptions"
keywords = ["python", "django", "django rest framework", "error handling", "exception"]
classifiers = [
"Framework :: Django",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.6, <4"
Django = { version = ">=2.2"}
djangorestframework = { version = ">=3.0"}
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-django = "^3.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"