-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
982 additions
and
651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,6 @@ __pycache__/ | |
|
||
# Environment | ||
/.venv/ | ||
|
||
# Environment variables | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"request": "launch", | ||
"module": "emipass", | ||
"justMyCode": false, | ||
"envFile": ".env" | ||
"envFile": ".env.python" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[tool.poetry] | ||
package-mode = true | ||
name = "emipass" | ||
version = "0.6.0" | ||
description = "WebRTC to SRT passthrough 💨" | ||
|
@@ -8,23 +9,23 @@ authors = ["radio-aktywne <[email protected]>"] | |
python = "^3.12" | ||
# Pydantic is used to define data models | ||
pydantic = "^2.8" | ||
pydantic-settings = "^2.3" | ||
# OmegaConf is used to load configuration | ||
omegaconf = "^2.3" | ||
pydantic-settings = "^2.4" | ||
# Typer and Rich are used to build CLIs | ||
typer = "^0.12" | ||
rich = "^13.7" | ||
# Litestar and Uvicorn are used to build async APIs | ||
litestar = "^2.10" | ||
uvicorn = { version = "^0.30", extras = ["standard"] } | ||
# For correct handling of timezones | ||
tzdata = "*" | ||
# Environment variables loader | ||
python-dotenv = "^1.0" | ||
# Streaming utilities | ||
pystreams = { git = "https://github.com/radio-aktywne/package-pystreams.git", tag = "0.9.0" } | ||
# Locking utilities | ||
pylocks = { git = "https://github.com/radio-aktywne/package-pylocks.git", tag = "0.4.0" } | ||
# Storage utilities | ||
pystores = { git = "https://github.com/radio-aktywne/package-pystores.git", tag = "0.5.0" } | ||
# Environment variables loader | ||
python-dotenv = "^1.0" | ||
|
||
[tool.poetry.group.test.dependencies] | ||
pytest = "^8.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.