72 lines
1.6 KiB
INI
72 lines
1.6 KiB
INI
[tool:pytest]
|
|
testpaths = test
|
|
|
|
[flake8]
|
|
max-line-length = 80
|
|
|
|
[isort]
|
|
known_first_party = autonomic
|
|
known_third_party = pytest, psutil
|
|
line_length = 80
|
|
multi_line_output = 3
|
|
skip = .venv, .tox
|
|
include_trailing_comma = True
|
|
|
|
[metadata]
|
|
name = autonomic
|
|
author = decentral1se
|
|
author_email = lukewm@riseup.net
|
|
maintainer = decentral1se
|
|
maintainer_email = lukewm@riseup.net
|
|
url = https://git.autonomic.zone/autonomic-cooperative/autonomic
|
|
project_urls =
|
|
Source Code = https://git.autonomic.zone/autonomic-cooperative/autonomic
|
|
Documentation = https://autonomic.readthedocs.io/
|
|
Maintainer Support = https://liberapay.come/decentral1se
|
|
description = Command line utility belt for Autonomic
|
|
long_description = file: README.rst
|
|
license = GPLv3
|
|
license_file = LICENSE
|
|
classifiers =
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.8
|
|
|
|
[options]
|
|
use_scm_version = True
|
|
python_requires = >=3.6
|
|
setup_requires =
|
|
setuptools_scm
|
|
setuptools_scm_git_archive
|
|
package_dir =
|
|
= .
|
|
packages = find:
|
|
zip_safe = False
|
|
install_requires =
|
|
click >= 7.1.1, <= 8.0
|
|
colorama >= 0.4.3, <= 0.5
|
|
emoji >= 0.5.4, <= 0.6
|
|
psutil >= 5.7.0, <= 6.0
|
|
pyinquirer >= 1.0.3, <= 1.1
|
|
ruamel.yaml >= 0.16.10, <= 0.17
|
|
|
|
[options.packages.find]
|
|
where = .
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
autonomic = autonomic.__main__:autonomic
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = docs/build
|
|
source-dir = docs/source
|
|
warning-is-error = True
|
|
|
|
[options.extras_require]
|
|
docs =
|
|
sphinx
|
|
sphinx_rtd_theme
|
|
sphinx-autodoc-typehints >= 1.6.0, < 2.0
|
|
changelog =
|
|
towncrier <= 19.2.0, < 20.0
|