poetry2nix/pkgs/poetry/pyproject.toml

123 lines
2.9 KiB
TOML
Raw Normal View History

2019-11-19 14:50:31 +00:00
[tool.poetry]
name = "poetry"
2021-12-25 15:42:39 -08:00
version = "1.1.12"
2019-11-19 14:50:31 +00:00
description = "Python dependency management and packaging made easy."
authors = [
"Sébastien Eustace <sebastien@eustace.io>"
]
license = "MIT"
readme = "README.md"
2019-12-13 12:53:27 +00:00
homepage = "https://python-poetry.org/"
repository = "https://github.com/python-poetry/poetry"
documentation = "https://python-poetry.org/docs"
2019-11-19 14:50:31 +00:00
keywords = ["packaging", "dependency", "poetry"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
# Requirements
[tool.poetry.dependencies]
2020-10-01 14:36:24 +02:00
python = "~2.7 || ^3.5"
2021-10-04 22:41:42 -05:00
poetry-core = "~1.0.7"
2020-10-01 14:36:24 +02:00
cleo = "^0.8.1"
clikit = "^0.6.2"
crashtest = { version = "^0.3.0", python = "^3.6" }
2019-11-19 14:50:31 +00:00
requests = "^2.18"
cachy = "^0.3.0"
2020-10-01 14:36:24 +02:00
requests-toolbelt = "^0.9.1"
2021-12-25 15:42:39 -08:00
cachecontrol = [
{ version = "^0.12.4", extras = ["filecache"], python = "<3.6" },
{ version = "^0.12.9", extras = ["filecache"], python = "^3.6" }
]
2019-11-19 14:50:31 +00:00
pkginfo = "^1.4"
html5lib = "^1.0"
shellingham = "^1.1"
2020-10-01 14:36:24 +02:00
tomlkit = ">=0.7.0,<1.0.0"
2019-11-19 14:50:31 +00:00
pexpect = "^4.7.0"
2020-10-01 14:36:24 +02:00
packaging = "^20.4"
virtualenv = { version = "^20.0.26" }
2019-11-19 14:50:31 +00:00
2020-10-01 14:36:24 +02:00
# The typing module is not in the stdlib in Python 2.7
typing = { version = "^3.6", python = "~2.7" }
2019-11-19 14:50:31 +00:00
2020-10-01 14:36:24 +02:00
# Use pathlib2 for Python 2.7
pathlib2 = { version = "^2.3", python = "~2.7" }
# Use futures on Python 2.7
futures = { version = "^3.3.0", python = "~2.7" }
2019-11-19 14:50:31 +00:00
# Use glob2 for Python 2.7 and 3.4
2020-10-01 14:36:24 +02:00
glob2 = { version = "^0.6", python = "~2.7" }
2019-11-19 14:50:31 +00:00
# functools32 is needed for Python 2.7
functools32 = { version = "^3.2.3", python = "~2.7" }
keyring = [
2020-10-01 14:36:24 +02:00
{ version = "^18.0.1", python = "~2.7" },
{ version = "^20.0.1", python = "~3.5" },
{ version = "^21.2.0", python = "^3.6" }
2019-11-19 14:50:31 +00:00
]
2020-10-01 14:36:24 +02:00
# Use subprocess32 for Python 2.7
subprocess32 = { version = "^3.5", python = "~2.7" }
importlib-metadata = {version = "^1.6.0", python = "<3.8"}
2019-11-19 14:50:31 +00:00
[tool.poetry.dev-dependencies]
2020-06-08 17:29:43 +02:00
pytest = [
{version = "^4.1", python = "<3.5"},
{version = "^5.4.3", python = ">=3.5"}
]
2019-11-19 14:50:31 +00:00
pytest-cov = "^2.5"
pytest-mock = "^1.9"
2020-10-01 14:36:24 +02:00
pre-commit = { version = "^2.6", python = "^3.6.1" }
2019-11-19 14:50:31 +00:00
tox = "^3.0"
pytest-sugar = "^0.9.2"
httpretty = "^0.9.6"
2021-03-04 12:56:50 +02:00
# We need to restrict the version of urllib3 to avoid
# httpretty breaking. This is fixed in httpretty >= 1.0.3
# but it's not compatible with Python 2.7 and 3.5.
urllib3 = "~1.25.10"
2019-11-19 14:50:31 +00:00
[tool.poetry.scripts]
poetry = "poetry.console:main"
2019-12-11 14:11:31 +01:00
[build-system]
2020-10-01 14:36:24 +02:00
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2019-12-11 14:11:31 +01:00
2019-11-19 14:50:31 +00:00
[tool.isort]
2020-10-01 14:36:24 +02:00
profile = "black"
2019-11-19 14:50:31 +00:00
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
2020-10-01 14:36:24 +02:00
src_paths = ["poetry", "tests"]
2019-11-19 14:50:31 +00:00
skip_glob = ["*/setup.py"]
filter_files = true
known_first_party = "poetry"
2020-06-08 17:29:43 +02:00
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''