-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.cfg
47 lines (42 loc) · 1.03 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
[metadata]
name = abci
version = attr: abci.__version__
description = Python based ABCI Server for Tendermint
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davebryson/py-abci
author = Dave Bryson
license = Apache 2.0
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers=
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.9
keywords = blockchain, tendermint, abci
project_urls =
Source = https://github.com/davebryson/py-abci
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.9
install_requires =
protobuf >= 3.18.3
colorlog >= 3.1.4
certifi >= 2022.12.7
[options.packages.find]
where = src
[options.extras_require]
dev =
pytest
pytest-cov
twine
black
build
[tool:pytest]
testpaths = tests
[options.entry_points]
console_scripts =
counter=example.counter:main