This repository was archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.51 KB
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
[tool.poetry]
name = "twelvefactor"
version = "0.2.0-alpha.0"
description = "Utilities for 12factor apps"
authors = [
"Daniel Knell <contact@danielknell.co.uk>"
]
license = "MIT"
readme = "README.md"
homepage = "https://twelvefactor.craftedbyartisans.com/"
repository = "https://github.com/artisanofcode/python-twelvefactor/"
documentation = "https://twelvefactor.craftedbyartisans.com/"
keywords = ["12factor", "config", "environment", "env", "configuration"]
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
include = ["twelvefactor.py"]
[tool.poetry.dependencies]
python = ">= 3.6"
mypy_extensions = ">= 0.3.0"
sphinx-autodoc-typehints = { version = "^1.6", optional = true }
sphinx = { version = ">=1.8,<4.0", optional = true }
toml = { version = "^0.10.0", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^6.2"
hypothesis = "^5.1"
isort = "^4.3"
flake8 = "^3.8"
black = "^19.3b0"
docformatter = "^1.4"
mypy = "^0.790"
pytest-cov = "^2.10"
coveralls = "^3.0"
bandit = "^1.7"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints", "toml"]
[tool.black]
line_length=79
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"