-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpyproject.toml
73 lines (58 loc) · 1.71 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
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"
[tool.poetry]
name = "split_settings"
version = "1.0.0"
description = "Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards and optional settings files."
authors = [
"sobolevn <[email protected]>",
"Visa Kopu",
"Antti Kaihola",
]
license = "BSD-2-Clause"
readme = "README.md"
repository = "https://github.com/sobolevn/django-split-settings"
homepage = "https://django-split-settings.readthedocs.io"
keywords = [
"django",
"settings",
"configuration",
"config",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
django = "^2.2"
mypy = "^0.720"
wemake-python-styleguide = "^0.12.4"
flake8-pytest = "^1.3"
flake8-pytest-style = "^0.1.3"
nitpick = "^0.21.0"
safety = "^1.8"
pytest = "^5.0"
pytest-cov = "^2.7"
pytest-randomly = "^3.0"
sphinx = "^2.1"
sphinx-autodoc-typehints = "^1.8"
doc8 = "^0.8.0"
tomlkit = "^0.5.4"
m2r = "^0.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"