-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "variational"
version = "0.0.0"
authors = [
{ name="Variational Research", email="[email protected]" },
]
dependencies = [
"requests >= 2.12",
"Brotli >= 1.0",
"eth-account >= 0.11"
]
description = "Variational Reference SDK"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Developers",
]
[project.urls]
Homepage = "https://variational.io"
Documentation = "https://docs.variational.io/for-developers/api"
Repository = "https://github.com/variational-research/variational-sdk-python/"
Issues = "https://github.com/variational-research/variational-sdk-python/issues"
[tool.hatch.build]
exclude = [
"/.*"
]