-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (64 loc) · 1.8 KB
/
pyproject.toml
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
[tool.poetry]
name = "cyberutils"
authors = ["Snedashkovsky, <[email protected]>"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "the toolset for cyber protocol and cosmos ecosystem"
documentation = "https://github.com/Snedashkovsky/cyberutils"
homepage = "https://github.com/Snedashkovsky/cyberutils"
keywords = ["bostrom", "cyber", "knowledge-graph", "dex", "swap", "defi", "crypto", "blockchain", ]
license = "MIT"
packages = [{ include = "cyberutils" }]
readme = "README.md"
repository = "https://github.com/Snedashkovsky/cyberutils.git"
version = "0.0.6"
[tool.poetry.dependencies]
pandas = "^1.0.0"
numpy = "^1.0.0"
python-dotenv = "^0.20.0"
tqdm = "^4.0.0"
ipython = "^8.0.0"
pandarallel = "^1.6.0"
multiprocess = "^0.70.14"
python = "^3.9"
cyber_sdk = "^1.1.2"
jsonschema = "^4.17.1"
gql = { version = "^3.0.0", extras = ["all"] }
[tool.poetry.dev-dependencies]
aioresponses = "^0.7.2"
asynctest = "^0.13.0"
pytest-cov = "^3.0.0"
pytest = "^7.0.1"
pip = "^22.0.3"
Sphinx = "^4.4.0"
sphinx-autobuild = "^2021.3.14"
black = "^22.1.0"
coverage = "^6.3.2"
isort = "^5.10.1"
mypy = "^0.931"
pytest-mock = "^3.7.0"
pytest-runner = "^5.3.1"
pytest-sugar = "^0.9.4"
sphinx-autodoc-typehints = "^1.17.0"
uvloop = "^0.16.0"
watchdog = "^2.1.6"
wheel = "^0.38.4"
flake8 = "^3.9.2"
sphinx-rtd-theme = "^1.0.0"
types-python-dateutil = "^2.8.9"
[tool.pytest.ini_options]
addopts = "-ra -q"
minversion = "6.0"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.1.0"]