2019-08-07 06:31:30 +00:00
|
|
|
[tool:pytest]
|
|
|
|
testpaths = test
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max-line-length = 80
|
|
|
|
|
|
|
|
[isort]
|
|
|
|
known_first_party = hypercore-crypto
|
|
|
|
known_third_party = pytest
|
|
|
|
line_length = 80
|
|
|
|
multi_line_output = 3
|
|
|
|
skip = .venv, .tox
|
|
|
|
include_trailing_comma = True
|
|
|
|
|
|
|
|
[metadata]
|
|
|
|
name = hypercore-crypto
|
|
|
|
author = decentral1se
|
|
|
|
author_email = lukewm@riseup.net
|
|
|
|
maintainer = decentral1se
|
|
|
|
maintainer_email = lukewm@riseup.net
|
|
|
|
url = https://hack.decentral1.se/datpy/hypercore-crypto
|
|
|
|
project_urls =
|
|
|
|
Source Code = https://hack.decentral1.se/datpy/hypercore-crypto
|
|
|
|
Documentation = https://hypercore-crypto.readthedocs.io/
|
|
|
|
Maintainer Support = https://decentral1.se
|
|
|
|
description = Cryptography primitives for Hypercore
|
|
|
|
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
|
2019-10-05 19:03:06 +00:00
|
|
|
python_requires = >=3.6
|
2019-08-07 06:31:30 +00:00
|
|
|
setup_requires =
|
|
|
|
setuptools_scm
|
|
|
|
setuptools_scm_git_archive
|
|
|
|
package_dir =
|
|
|
|
= .
|
|
|
|
packages = find:
|
|
|
|
zip_safe = False
|
|
|
|
install_requires =
|
2019-10-05 12:11:14 +00:00
|
|
|
pysodium >= 0.7.2, < 0.8
|
2019-10-05 18:28:55 +00:00
|
|
|
merkle-tree-stream >= 0.0.1a1, < 1.0.0
|
2019-08-07 06:31:30 +00:00
|
|
|
|
|
|
|
[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
|
2019-11-03 15:44:42 +00:00
|
|
|
sphinx_rtd_theme
|
2019-08-07 06:31:30 +00:00
|
|
|
sphinx-autodoc-typehints >= 1.6.0, < 2.0
|
|
|
|
changelog =
|
|
|
|
towncrier <= 19.2.0, < 20.0
|