61 lines
1.4 KiB
INI
61 lines
1.4 KiB
INI
|
[tool:pytest]
|
||
|
testpaths = test
|
||
|
|
||
|
[flake8]
|
||
|
max-line-length = 80
|
||
|
|
||
|
[isort]
|
||
|
known_first_party = merkle-tree-stream
|
||
|
known_third_party = pytest
|
||
|
line_length = 80
|
||
|
multi_line_output = 3
|
||
|
skip = .venv, .tox
|
||
|
include_trailing_comma = True
|
||
|
|
||
|
[metadata]
|
||
|
name = merkle-tree-stream
|
||
|
author = decentral1se
|
||
|
author_email = lukewm@riseup.net
|
||
|
maintainer = decentral1se
|
||
|
maintainer_email = lukewm@riseup.net
|
||
|
url = https://hack.decentral1.se/datpy/merkle-tree-stream
|
||
|
project_urls =
|
||
|
Source Code = https://hack.decentral1.se/datpy/merkle-tree-stream
|
||
|
Documentation = https://merkle-tree-stream.readthedocs.io/
|
||
|
Maintainer Support = https://decentral1.se
|
||
|
description = A stream that generates a merkle tree based on the incoming data.
|
||
|
long_description = file: README.rst
|
||
|
license = GPLv3
|
||
|
license_file = LICENSE
|
||
|
classifiers =
|
||
|
Programming Language :: Python :: 3
|
||
|
Programming Language :: Python :: 3.6
|
||
|
Programming Language :: Python :: 3.7
|
||
|
|
||
|
[options]
|
||
|
use_scm_version = True
|
||
|
python_requires = !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
|
||
|
setup_requires =
|
||
|
setuptools_scm
|
||
|
setuptools_scm_git_archive
|
||
|
package_dir =
|
||
|
= .
|
||
|
packages = find:
|
||
|
zip_safe = False
|
||
|
|
||
|
[options.packages.find]
|
||
|
where = .
|
||
|
|
||
|
[build_sphinx]
|
||
|
all_files = 1
|
||
|
build-dir = documentation/build
|
||
|
source-dir = documentation/source
|
||
|
warning-is-error = True
|
||
|
|
||
|
[options.extras_require]
|
||
|
docs =
|
||
|
sphinx
|
||
|
sphinx-autodoc-typehints >= 1.6.0, < 2.0
|
||
|
changelog =
|
||
|
towncrier <= 19.2.0, < 20.0
|