poetry-example/pyproject.toml

23 lines
429 B
TOML

[tool.poetry]
name = "example"
version = "0.1.0"
description = ""
authors = ["kirbylife <gabriel13m@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.22"
beautifulsoup4 = "4.8.2"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
ipython = "^7.11"
[tool.poetry.scripts]
start = "example.main:main"
tests = "tests:run_all_tests"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"