-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.42 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "polylayer"
version = "0.1.0"
description = "Official Python SDK for the Polylayer API — Bearer-keyed trading on Polymarket, Hyperliquid, and Jupiter Perpetuals."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Polylayer" }]
keywords = ["polylayer", "polymarket", "hyperliquid", "jupiter", "perps", "prediction-markets", "trading", "sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
# Stdlib-only at runtime; typing_extensions only on Python < 3.11 for
# NotRequired (used in the typed response shapes).
dependencies = ["typing_extensions>=4.0; python_version < '3.11'"]
[project.optional-dependencies]
dev = ["pytest>=7.0.0", "mypy>=1.0.0"]
[project.urls]
Homepage = "https://polylayer.xyz"
Repository = "https://github.com/polylayer/polylayer-py"
[tool.hatch.build.targets.wheel]
packages = ["polylayer"]
[tool.hatch.build.targets.wheel.force-include]
"polylayer/py.typed" = "polylayer/py.typed"