-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
43 lines (37 loc) · 1.22 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
[tool.poetry]
name = "coinmetrics-api-client"
version = "2024.11.21.20"
description = "Python client for Coin Metrics API v4."
authors = ["Coin Metrics <[email protected]>", "Oleksandr Buchkovskyi <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://coinmetrics.github.io/api-client-python/site/index.html"
repository = "https://github.com/coinmetrics/api-client-python"
packages = [{include = "coinmetrics"}]
keywords = ["coin metrics", "coin", "metrics", "crypto", "bitcoin", "network-data", "market-data", "api", "handy"]
documentation = "https://coinmetrics.github.io/api-client-python/site/index.html"
include = ["test"]
[tool.poetry.dependencies]
python = "^3.7.1"
requests = "^2.24.0"
orjson = "^3.6.0"
pandas = {version="^1.3.3", optional=true}
websocket-client = "^1.2.1"
python-dateutil = "^2.8.2"
typer = ">=0.7.0"
tqdm = "^4.64.1"
[tool.poetry.dev-dependencies]
mypy = "^1.1.1"
flake8 = "^3.8.3"
black = "^23.1"
mkdocs = "^1.3.1"
mkdocs-material = "^9.1.3"
pydoc-markdown = "^4.8"
pytest-mock = "^3.2.0"
[tool.poetry.scripts]
coinmetrics = 'coinmetrics.typer_cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
pandas = ["pandas"]