-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (50 loc) · 1.21 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "dhkdao-airdrop"
version = "0.1.0"
authors = [
{ name = "Jimmy Chu", email = "[email protected]" },
]
description = "DHK dao airdrop scripts"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["DHK", "DHK dao", "airdrop"]
dependencies = [
"pandas>=2.2.3",
"python-dotenv",
"numpy>=2.1.0",
"typer>=0.12.5",
"requests>=2.32.3",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10"
]
[project.urls]
Homepage = "https://github.com/dhkdao/airdrop-scripts"
Documentation = "https://github.com/dhkdao/airdrop-scripts/blob/main/README.md"
Issues = "https://github.com/dhkdao/airdrop-scripts/issues"
[project.scripts]
dhkdao-airdrop = "dhkdao_airdrop:cli"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
test = "pytest"
"test:no-capture" = "pytest --capture=no tests"
lint = "flake8 src tests"
"lint:write" = "black src tests"
exe = "pdm run src/main.py"
all = { composite = ["lint", "test"]}
[tool.pdm.dev-dependencies]
lint = [
"flake8",
"black"
]
test = [
"pytest>=8.3.3",
"python-dotenv>=1.0.1"
]