e5df45650d
Closes #1.
68 lines
1.3 KiB
TOML
68 lines
1.3 KiB
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=40.9.0",
|
|
"setuptools-scm",
|
|
"wheel",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[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
|