-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
58 lines (53 loc) · 1.26 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-declarative-apis"
version = "0.31.7" # set by bumpversion
description = "Simple, readable, declarative APIs for Django"
readme = "README.md"
dependencies = [
"Django >=3.2, <5",
"celery>=4.0.2,!=4.1.0",
"cryptography>=2.0",
"decorator==4.0.11",
"django-dirtyfields>=1.2.1",
"oauthlib[signedtoken,rsa]>=3.1.0",
"pydantic>=1.8"
]
keywords = [
"django",
"rest",
"declarative",
"api"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
]
[project.optional-dependencies]
dev = [
"bandit>=1.7.4",
"bumpversion~=0.5",
"coverage[toml]==6.3.2",
"ipython~=7.0",
"oauth2==1.9.0.post1",
"pyyaml~=6.0",
"ruff~=0.1.2",
"sphinx_rtd_theme==0.5.2",
"tblib~=1.6.0",
]
[tool.ruff]
extend-exclude = [".heroku"]
extend-select = ["C901"]
[tool.coverage.run]
omit = ["*/tests/*", "*/management/*", "*/migrations/*"]
[tool.coverage.report]
fail_under = 90
exclude_lines = ["raise NotImplementedError"]