-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.32 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
[project]
name = "lightspark"
authors = [{ name = "Lightspark Group, Inc.", email = "info@lightspark.com" }]
dynamic = ["version"]
description = "Python SDK for the Lightspark API"
license = { file = "LICENSE" }
requires-python = ">=3.9"
readme = 'README.md'
dependencies = [
"cryptography>=46.0.6",
"lightspark-crypto-python",
"pyjwt",
"requests>=2.32.5",
"zstandard",
]
[project.urls]
homepage = "https://lightspark.com"
documentation = "https://docs.lightspark.com/lightspark-sdk/getting-started?language=Python"
source = "https://github.com/lightsparkdev/python-sdk"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"ruff",
"flask",
"importlib_metadata",
"libcst",
"pylint",
"pytest",
"ty",
"typed-ast",
"unidiff",
]
[tool.setuptools]
dynamic = { version = { attr = "lightspark.version.__version__" } }
[tool.setuptools.packages.find]
include = ["lightspark*"]
[tool.uv]
# Try to decrease the risk of supply-chain attacks like the LiteLLM attack by waiting at least a week before we
# upgrade versions. If you need to apply an emergency update faster than this, you can run:
#
# uv add $PACKAGE --exclude-newer-package $PACKAGE=false
exclude-newer = "1 week"
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"