-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (70 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pumpswap-python"
version = "0.1.0"
description = "Direct Pump AMM (pAMMBay) + legacy PumpSwap swaps in Python. Build raw Solana instructions, no Jupiter."
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">=3.10"
authors = [{ name = "JinUltimate1995" }]
keywords = [
"pumpswap",
"pump-amm",
"pammbay",
"pumpfun",
"solana",
"defi",
"dex",
"amm",
"trading",
"crypto",
"python",
"async",
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27",
"solders>=0.21",
]
[project.urls]
Homepage = "https://github.com/JinUltimate1995/pumpswap-python"
Repository = "https://github.com/JinUltimate1995/pumpswap-python"
Issues = "https://github.com/JinUltimate1995/pumpswap-python/issues"
"Commercial License" = "https://github.com/JinUltimate1995/pumpswap-python/blob/main/COMMERCIAL.md"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.4",
"mypy>=1.10",
]
[tool.hatch.build.targets.wheel]
packages = ["pumpswap"]
[tool.hatch.build.targets.sdist]
include = ["pumpswap", "tests", "README.md", "CHANGELOG.md", "LICENSE.md", "COMMERCIAL.md"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.mypy]
python_version = "3.10"
strict = true
[[tool.mypy.overrides]]
module = "solders.*"
ignore_missing_imports = true