29 lines
604 B
TOML
29 lines
604 B
TOML
[tool.poetry]
|
|
name = "poetry"
|
|
version = "0.2.0"
|
|
description = "Python dependency management and packaging made easy."
|
|
authors = [
|
|
"Sébastien Eustace <sebastien@eustace.io>"
|
|
]
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://python-poetry.org/"
|
|
repository = "https://github.com/python-poetry/poetry"
|
|
documentation = "https://python-poetry.org/docs"
|
|
|
|
keywords = ["packaging", "dependency", "poetry"]
|
|
|
|
# Requirements
|
|
[tool.poetry.dependencies]
|
|
python = "^3.6"
|
|
cleo = "^0.6"
|
|
requests = "^2.18"
|
|
toml = "^0.9"
|
|
cachy = "^0.1.0"
|
|
pip-tools = "^1.11"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "~3.4"
|