Skip to content

Commit 4597484

Browse files
committed
Migrate to pyproject.toml + uv
1 parent e06972a commit 4597484

2 files changed

Lines changed: 2134 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "ethena_sats_adapters"
7+
version = "0.1.0"
8+
requires-python = ">=3.10"
9+
dependencies = [
10+
"DateTime~=4.9",
11+
"web3~=6.19.0",
12+
"python-dotenv~=1.0.0",
13+
"requests==2.32.4",
14+
"tqdm~=4.66.4",
15+
"rich==13.7.1",
16+
"types-requests==2.31.0.6",
17+
]
18+
19+
[dependency-groups]
20+
dev = [
21+
22+
]
23+
24+
[tool.ruff]
25+
target-version = "py310"
26+
line-length = 130
27+
28+
[tool.ruff.lint]
29+
select = ["E", "W", "F", "I", "B", "C4", "UP", "ARG", "SIM", "TCH", "PTH", "ERA", "PL", "TRY", "RUF"]

0 commit comments

Comments
 (0)