-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.02 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
[project]
name = "renegade-sdk"
version = "0.1.1"
description = "Python SDK for Renegade darkpool"
readme = "README.md"
requires-python = ">=3.13"
license = "Apache-2.0"
authors = [{ name = "Renegade", email = "[email protected]" }]
keywords = [
"defi",
"darkpool",
"zero-knowledge",
"mpc",
"blockchain",
"arbitrum",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.6.1",
"cryptography>=42.0.2",
"web3>=6.15.1",
"python-dotenv>=1.0.1",
]
[project.urls]
Homepage = "https://github.com/renegade-fi/renegade-sdk"
Documentation = "https://docs.renegade.fi"
[tool.hatch.build.targets.wheel]
packages = ["renegade"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"