-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.2 KB
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
[tool.black]
line-length = 125
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
markers = [
"live: tests that call live tardis.dev endpoints",
]
[project]
name = "tardis-dev"
version = "4.0.0"
description = "Python client for tardis.dev - historical tick-level cryptocurrency market data replay API."
readme = "README.md"
requires-python = ">=3.9,<4.0"
license = "MPL-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Thad", email = "thad@tardis.dev" },
]
keywords = [
"cryptocurrency data feed",
"market data",
"api client",
"orderbook",
"crypto markets data replay",
"historical data",
"historical cryptocurrency prices",
"cryptocurrency api",
]
dependencies = [
"aiohttp>=3.10.0",
"python-dateutil>=2.8.2,<3",
"aiofiles>=24.1.0,<25",
"zstandard>=0.19.0",
]
[project.urls]
Homepage = "https://github.com/tardis-dev/tardis-python"
[dependency-groups]
dev = [
"pytest>=8.3.5,<9",
"pytest-asyncio>=0.24.0,<0.25",
"aioresponses>=0.7.8,<0.8",
"black>=24.4.2,<25",
]
[tool.uv]
exclude-newer = "7 days"
[tool.uv.build-backend]
module-root = ""
[build-system]
requires = ["uv_build>=0.9.28,<0.10.0"]
build-backend = "uv_build"