-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (55 loc) · 1.24 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
[project]
name = "trio-bybit"
version = "0.3.8"
description = "Python bybit async SDK based on trio."
authors = [
{ name = "Shu Wang", email = "[email protected]" }
]
dependencies = [
"trio>=0.25.1",
"httpx[http2]>=0.27.0",
"orjson>=3.10.3",
"dateparser>=1.2.0",
"pytz>=2024.1",
"trio-websocket>=0.11.1",
"cryptography>=42.0.7",
"trio-util>=0.7.0",
]
readme = "README.md"
requires-python = ">= 3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
license = {file = "LICENSE"}
keywords = [
"bybit",
"crypto",
]
[project.urls]
Repository = "https://github.com/halfelf/trio-bybit"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.2.1",
"ipython>=8.24.0",
"rich>=13.7.1",
"pytest-trio>=0.8.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["trio_bybit"]
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.format]
line-ending = "lf"
indent-style = "space"
quote-style = "double"