This repository has been archived on 2020-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic/pyproject.toml

68 lines
1.3 KiB
TOML
Raw Permalink Normal View History

[build-system]
requires = [
"setuptools>=40.9.0",
"setuptools-scm",
"wheel",
]
build-backend = "setuptools.build_meta"
2020-04-03 12:46:29 +00:00
[tool.poetry]
name = "autonomic"
version = "0.0.1"
description = "Command line utility belt for Autonomic"
authors = ["Luke Murphy <lukewm@riseup.net>"]
[tool.poetry.dependencies]
python = ">= 3.8.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^4.3.21"
flake8 = "^3.7.9"
[tool.black]
line-length = 80
target-version = ["py38"]
include = '\.pyi?$'
[tool.towncrier]
directory = "changelog/"
filename = "CHANGELOG.rst"
package = "autonomic"
package_dir = "autonomic"
[[tool.towncrier.type]]
directory = "removal"
name = "Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Improved Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "trivial"
name = "Trivial/Internal Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "announce"
name = "Project announcements"
showcontent = true