forked from tellor-io/telliot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (56 loc) · 1.54 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
[metadata]
# This includes the license file(s) in the wheel.
# https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
name=telliot_core
version = attr: telliot_core.__version__
author=Tellor Development Community
description= Telliot is a Python framework for interacting with the decentralized TellorX network.
long_description = file: README.md
long_description_content_type = text/markdown
url=https://github.com/tellor-io/telliot-core
license_files = LICENSE
classifiers=
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Financial and Insurance Industry
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Mathematics
Topic :: System :: Networking
Topic :: Office/Business :: Financial
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.9
license=MIT
keywords=
oracle
etherium
blockchain
[options]
package_dir =
= src
include_package_data = True
packages = find:
python_requires = >=3.9
tests_require =
pytest
pytest-asyncio
pytest-cov
tox
tox-travis
eth-brownie
pymdown-extensions >= 9.5
install_requires =
click
PyYAML >= 6.0
requests
web3 >= 5.26.0
clamfig == 0.1.3
chained-accounts == 0.0.1
[options.package_data]
* = *.csv, *.json
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
telliot-core = telliot_core.cli.main:main