-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
38 lines (31 loc) · 922 Bytes
/
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
[tool.poetry]
name = "foundry-platform-sdk"
version = "0.0.0"
description = "The official Python library for the Foundry API"
license = "Apache-2.0"
readme = "README.md"
authors = ["Palantir Technologies, Inc."]
repository = "https://github.com/palantir/foundry-platform-python"
keywords = ["Palantir", "Foundry", "SDK", "Client", "API"]
packages = [{ include = "foundry" }]
[tool.poetry.dependencies]
annotated-types = ">=0.7.0"
pydantic = "^2.1.0"
python = "^3.9"
requests = "^2.25.0"
typing-extensions = ">=4.7.1"
[tool.poetry.group.test.dependencies]
expects = ">=0.9.0"
mockito = ">=1.5.1"
pytest = ">=7.4.0"
pytest-asyncio = ">=0.23.0"
[tool.poetry.extras]
cli = ["click"]
[tool.black]
line_length = 100
[build-system]
requires = ["setuptools >= 35.0.2", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
foundry_v1 = "foundry.v1.cli:cli"
foundry_v2 = "foundry.v2.cli:cli"