-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (47 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "django-admin-data-from-external-service"
version = "0.1.2"
description = "Helpers to extend Django Admin with data from external service with minimal hacks"
authors = ["Evgeniy Tatarkin <tatarkin.evg@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/estin/django-admin-data-from-external-service"
keywords = ["django", "admin"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "dadfes" },
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-django = "^4.4"
flake8 = "^3.9"
black = "^20.0b1"
tox = "^3.24"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
\.git
|\.github
|\.pytest_cache
|migrations
)/
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"