34 lines
756 B
TOML
34 lines
756 B
TOML
[tool.poetry]
|
|
name = "extended-project"
|
|
version = "1.2.3"
|
|
description = "Some description."
|
|
authors = [
|
|
"Sébastien Eustace <sebastien@eustace.io>"
|
|
]
|
|
license = "MIT"
|
|
|
|
readme = "README.rst"
|
|
|
|
homepage = "https://python-poetry.org"
|
|
repository = "https://github.com/python-poetry/poetry"
|
|
documentation = "https://python-poetry.org/docs"
|
|
|
|
keywords = ["packaging", "dependency", "poetry"]
|
|
|
|
classifiers = [
|
|
"Topic :: Software Development :: Build Tools",
|
|
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
]
|
|
|
|
[tool.poetry.build]
|
|
script = "build.py"
|
|
generate-setup-file = false
|
|
|
|
# Requirements
|
|
[tool.poetry.dependencies]
|
|
python = "~2.7 || ^3.4"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core", "cython"]
|
|
build-backend = "poetry.core.masonry.api"
|