-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.cfg
More file actions
60 lines (52 loc) · 1.29 KB
/
setup.cfg
File metadata and controls
60 lines (52 loc) · 1.29 KB
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
[metadata]
name = eth-index
url = https://github.com/trustlines-protocol/py-eth-index
description = Indexer for the ethereum blockchain
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = MIT
license_file = LICENSE
keywords = ethereum indexer database
author = Trustlines-Network
author_email = contact@brainbot.com
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
[options.packages.find]
where=src
[options]
python_requires = >= 3.8
setup_requires = setuptools_scm
package_dir=
=src
packages=find:
install_requires =
web3>=5.0
psycopg2>=2.7
click
attrs
trustlines-contracts-bin>=2.0.0
[options.entry_points]
console_scripts =
ethindex=ethindex.cli:cli
[flake8]
max-line-length = 119
ignore =
# P101 format string does contain unindexed parameters
P101
# default:
E121,E123,E126,E226,E24,E704,W503,W504
[isort]
line_length=88
known_future_library=future
known_first_party=ethindex
default_section=THIRDPARTY
combine_as_imports=1
# black compatibility
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True