versioning of package now handled through setuptools_scm. Git tag therefore takes precedence and manually setting a version in setup.cfg is redundant. In addition, setuptools_scm handles proper inclusion of sdist non-python files and simplifies bdist packaging.
15 lines
237 B
TOML
15 lines
237 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
"wheel",
|
|
"setuptools-scm[toml]"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.autopep8]
|
|
max_line_length = 80
|
|
aggressive = 3
|
|
recursive = true
|
|
in-place = true
|
|
|
|
[tool.setuptools_scm]
|