forked from python-poetry/poetry-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
123 lines (99 loc) · 2.61 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[tool.poetry]
name = "poetry-core"
version = "1.0.0a9"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/python-poetry/poetry-core"
repository = "https://github.com/python-poetry/poetry-core"
keywords = ["packaging", "dependency", "poetry"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{include = "poetry"},
]
exclude = [
"**/*.pyc",
"**/*.pyi",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/python-poetry/poetry/issues"
[tool.poetry.dependencies]
python = "~2.7 || ^3.5"
# required for compatibility
importlib-metadata = {version = "^1.7.0", python = "~2.7 || >=3.5, <3.8"}
pathlib2 = {version = "^2.3.5", python = "~2.7"}
typing = {version = "^3.7.4.1", python = "~2.7"}
# required by tomlkit
enum34 = {version = "^1.1.10", python = "~2.7"}
# required by tomlkit, jsonschema
functools32 = {version = "^3.2.3-2", python = "~2.7"}
[tool.poetry.dev-dependencies]
pre-commit = "^1.10"
pytest = "^4.6"
pytest-cov = "^2.8"
pytest-mock = "^2.0"
tox = "^3.0"
vendoring = {version = "^0.3", python = "~3.8"}
pep517 = "^0.8.2"
"backports.tempfile" = {version = "^1.0", python = "~2.7"}
[tool.intreehooks]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| poetry/core/_vendor/*
)/
'''
[tool.isort]
line_length = 88
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
use_parentheses = true
not_skip = "__init__.py"
skip_glob = ["*/setup.py", "*/poetry/core/_vendor/*"]
filter_files = true
known_first_party = "poetry.core"
known_third_party = ["poetry.core._vendor"]
[tool.vendoring]
destination = "poetry/core/_vendor/"
requirements = "poetry/core/_vendor/vendor.txt"
namespace = ""
protected-files = ["__init__.py", "README.md", "vendor.txt"]
patches-dir = "vendors/patches"
[tool.vendoring.transformations]
substitute = []
drop = [
"bin/",
"*.so",
"typing.*",
"*/tests/"
]
[tool.vendoring.typing-stubs]
six = ["six.__init__", "six.moves.__init__", "six.moves.configparser"]
appdirs = []
[tool.vendoring.license.directories]
[tool.vendoring.license.fallback-urls]
pyrsistent = "https://raw.githubusercontent.com/tobgu/pyrsistent/master/LICENCE.mit"
[build-system]
requires = ["intreehooks"]
build-backend = "intreehooks:loader"