-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
91 lines (81 loc) · 2 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[metadata]
name = stramp
description = Blockchain-backed timestamp proof for structured document sections
author = Ray Burr
author-email = [email protected]
license = mit
long-description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8; variant=GFM
url = https://github.com/wonkyweirdy/stramp
platforms = any
keywords = blockchain timestamp opentimestamps
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Topic :: Utilities
Topic :: Text Processing
Topic :: Security :: Cryptography
[options]
zip_safe = False
packages = find:
include_package_data = True
package_dir =
=src
install_requires =
click>=6.7
anytree>=2.7.2
dataclasses>=0.6 ; python_version < '3.7'
importlib-metadata>=1.0 ; python_version < '3.8'
python_requires = >=3.6
setup_requires =
setuptools_scm
[options.packages.find]
where = src
exclude =
tests
[options.extras_require]
testing =
pytest
pytest-cov
click
commonmark = marko
[options.entry_points]
console_scripts =
stramp = stramp.cli:main
[test]
extras = True
[tool:pytest]
addopts =
--cov stramp --cov-report term-missing
--verbose
norecursedirs =
dist
build
.tox
testpaths = tests
[aliases]
dists = bdist_wheel
[devpi:upload]
# Options for the devpi: PyPI server and packaging tool
# VCS export must be deactivated since we are using setuptools-scm
no-vcs = 1
formats = bdist_wheel
[flake8]
exclude =
.tox
build
dist
.eggs
docs/conf.py