Skip to content

Commit 8820a0f

Browse files
committed
bindings/py: init
1 parent 8c6146b commit 8820a0f

File tree

6 files changed

+263
-0
lines changed

6 files changed

+263
-0
lines changed

bindings/py/README.md

Whitespace-only changes.

bindings/py/poetry.lock

Lines changed: 170 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/py/poetry.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[virtualenvs]
2+
in-project = true

bindings/py/pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[tool.poetry]
2+
name = "ttds-py"
3+
version = "0.1.0"
4+
description = "Python bindings for the ttds API."
5+
authors = ["Tali Auster <[email protected]>"]
6+
readme = "README.md"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.12"
10+
requests = "^2.32.3"
11+
12+
[build-system]
13+
requires = ["poetry-core"]
14+
build-backend = "poetry.core.masonry.api"
15+
16+
[tool.pyright]
17+
venvPath = "."
18+
venv = ".venv"

0 commit comments

Comments
 (0)