-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (36 loc) · 923 Bytes
/
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "idex-sdk"
version = "1.0.0b2"
description = "IDEX v3 SDK for Python"
license = "MIT"
authors = ["IDEX <[email protected]>"]
readme = "README.md"
homepage = "https://idex.io/"
repository = "https://github.com/idexio/idex-sdk-python"
documentation = "https://api-docs-v3.idex.io/"
packages = [{ include = "idex_sdk" }]
[tool.poetry.dependencies]
python = ">3.7.1,<3.10"
pyee = "^9.0.4"
web3 = "^5.30.0"
websockets = "9.1"
[tool.poetry.dev-dependencies]
mypy = "^0.950"
isort = "^5.10.1"
flake8 = "^4.0.1"
black = "^22.3.0"
types-requests = "^2.27.30"
python-dotenv = "^0.20.0"
debugpy = "^1.6.2"
pydoc-markdown = { version = "^4.6.3", extras = ["novella"] }
[tool.mypy]
warn_unused_configs = true
disallow_untyped_defs = true
[tool.black]
line-length = 100
include = '\.pyi?$'
[tool.isort]
profile = "black"