-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1016 Bytes
/
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
[tool.poetry]
name = "django-hide-admin"
version = "1.0.0"
description = "Hides Django admin from unauthorized users"
authors = ["Evgeniy Krysanov <[email protected]>"]
readme = "README.md"
repository = "https://github.com/catcombo/django-hide-admin"
packages = [
{ include = "hide_admin" },
]
keywords = ["django", "admin"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]
[tool.poetry.dependencies]
python = "^3.7"
Django = ">=2.2"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
flake8-black = "*"
flake8-coding = "*"
flake8-commas = "*"
flake8-isort = "*"
flake8-quotes = "*"
isort = "*"
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"