-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 875 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
39
40
[tool.poetry]
name = "webrtc"
version = "0.1.0"
description = ""
authors = ["romashorodok <[email protected]>"]
readme = "README.md"
packages = [
{include = "webrtc", from = "src"},
{include = "tests", from = "src"},
{include = "native", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.13"
psutil = "^6.0.0"
cryptography = "44.0.0"
pyopenssl = "^24.1.0"
pylibsrtp = "^0.10.0"
asn1crypto = "^1.5.1"
starkbank-ecdsa = "^2.2.0"
pycryptodome = "^3.21.0"
ecdsa = "^0.19.0"
pytest = "^8.3.4"
maturin = "^1.8.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.3"
[tool.maturin]
python-source = "src"
features = ["pyo3/extension-module"]
module-name = "native.native"
# [build-system]
# requires = ["maturin>=1.8,<2.0"]
# build-backend = "maturin"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"