-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
48 lines (42 loc) · 1.2 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
[tool.poetry]
name = "coinglass-api"
version = "1.3.0"
repository = "https://github.com/dineshpinto/coinglass-api"
homepage = "https://github.com/dineshpinto/coinglass-api"
license = "MIT"
keywords = ["coinglass", "api", "crypto", "cryptocurrency", "bitcoin", "ethereum", "binance", "dydx", "okex"]
description = "Unofficial Python client for Coinglass API"
authors = ["dineshpinto <annual.fallout_0z@gmail.com>"]
readme = "README.md"
packages = [{ include = "coinglass_api" }]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.0.0"
requests = "^2.28.2"
pyzmq = "^25.1.1"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^3.5.2"
matplotlib = "^3.5.2"
seaborn = "^0.11.2"
ruff = "^0.0.290"
ruff-lsp = "^0.0.39"
[tool.poetry.group.test.dependencies]
coverage = "^7.2.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
extend-select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"ERA", # flake8-eradicate/eradicate
"I", # isort
"N", # pep8-naming
"PIE", # flake8-pie
"PGH", # pygrep
"RUF", # ruff checks
"SIM", # flake8-simplify
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"UP", # pyupgrade
]