-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
syncing up to 366c4964f73b9c85e6b345d13a1f06961910695d
Co-authored-by: Joey Greco <[email protected]>
- Loading branch information
1 parent
a09756d
commit 23df60d
Showing
4 changed files
with
54 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,69 @@ | ||
[build-system] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["setuptools >= 61.0"] | ||
requires = [ "setuptools >= 61.0" ] | ||
|
||
[project] | ||
dependencies = [ | ||
"aiohttp==3.9.5", | ||
"backoff==2.2.1", | ||
"opentelemetry-api==1.16.0", | ||
"opentelemetry-sdk==1.16.0", | ||
"opentelemetry-exporter-otlp-proto-http==1.16.0", | ||
"requests==2.32.0", | ||
"requests-futures==1.0.1", | ||
"python-dotenv==0.21.1", | ||
"prometheus-client==0.14.1", | ||
"dataclasses-json==0.5.7", | ||
"nest_asyncio==1.5.6", | ||
"pydash==6.0.2", | ||
"redis==4.6.0", | ||
"ujson==5.10.0", | ||
"pydantic==1.10.14", | ||
"psutil==5.9.8", | ||
"simplejson==3.19.2", | ||
"plotly==5.19.0", | ||
"aiohttp==3.9.5", | ||
"backoff==2.2.1", | ||
"opentelemetry-api==1.16.0", | ||
"opentelemetry-sdk==1.16.0", | ||
"opentelemetry-exporter-otlp-proto-http==1.16.0", | ||
"requests==2.32.3", | ||
"requests-futures==1.0.1", | ||
"python-dotenv==0.21.1", | ||
"prometheus-client==0.14.1", | ||
"dataclasses-json==0.5.7", | ||
"nest_asyncio==1.5.6", | ||
"pydash==6.0.2", | ||
"redis==4.6.0", | ||
"ujson==5.10.0", | ||
"pydantic==1.10.14", | ||
"psutil==5.9.8", | ||
"simplejson==3.19.2", | ||
"plotly==5.19.0", | ||
] | ||
dynamic = ["version"] | ||
dynamic = [ "version" ] | ||
name = "worker-py" | ||
|
||
authors = [ | ||
{name = "Bruce Yu", email = "[email protected]"}, | ||
{name = "Frank Greco", email = "[email protected]"}, | ||
{name = "Carl Noel", email = "[email protected]"}, | ||
{name = "Joey Greco", email = "[email protected]"}, | ||
{name = "Cheng Tan", email = "[email protected]"}, | ||
{name = "Dan LaMotte", email = "[email protected]"}, | ||
{ name = "Bruce Yu", email = "[email protected]" }, | ||
{ name = "Frank Greco", email = "[email protected]" }, | ||
{ name = "Carl Noel", email = "[email protected]" }, | ||
{ name = "Joey Greco", email = "[email protected]" }, | ||
{ name = "Cheng Tan", email = "[email protected]" }, | ||
{ name = "Dan LaMotte", email = "[email protected]" }, | ||
] | ||
description = "Python Worker for the Superblocks Execution Platform" | ||
maintainers = [ | ||
{name = "Bruce Yu", email = "[email protected]"}, | ||
{name = "Frank Greco", email = "[email protected]"}, | ||
{name = "Carl Noel", email = "[email protected]"}, | ||
{name = "Joey Greco", email = "[email protected]"}, | ||
{name = "Cheng Tan", email = "[email protected]"}, | ||
{name = "Dan LaMotte", email = "[email protected]"}, | ||
{ name = "Bruce Yu", email = "[email protected]" }, | ||
{ name = "Frank Greco", email = "[email protected]" }, | ||
{ name = "Carl Noel", email = "[email protected]" }, | ||
{ name = "Joey Greco", email = "[email protected]" }, | ||
{ name = "Cheng Tan", email = "[email protected]" }, | ||
{ name = "Dan LaMotte", email = "[email protected]" }, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.10.1" | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"pytest==7.2.0", | ||
"pytest-cov==4.0.0", | ||
"hypothesis==6.56.3", | ||
"pandas==1.5.3", | ||
"numpy==1.26.4", | ||
"pytest-asyncio==0.20.1", | ||
"pytest-mock==3.10.0", | ||
"pytest==7.2.0", | ||
"pytest-cov==4.0.0", | ||
"hypothesis==6.56.3", | ||
"pandas==1.5.3", | ||
"numpy==1.26.4", | ||
"pytest-asyncio==0.20.1", | ||
"pytest-mock==3.10.0", | ||
] | ||
typecheck = [ | ||
"types-requests==2.28.11.2", | ||
"types-simplejson==3.17.7", | ||
"types-urllib3==1.26.25.14", | ||
"typing-inspect==0.8.0", | ||
"typing_extensions==4.2.0", | ||
"types-ujson==5.6.0.0", | ||
"types-redis==4.3.21.6", | ||
"types-requests==2.28.11.2", | ||
"types-simplejson==3.17.7", | ||
"types-urllib3==1.26.25.14", | ||
"typing-inspect==0.8.0", | ||
"typing_extensions==4.2.0", | ||
"types-ujson==5.6.0.0", | ||
"types-redis==4.3.21.6", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -76,13 +76,13 @@ Repository = "https://github.com/superblocksteam/worker.py" | |
|
||
[tool.ruff.lint] | ||
# https://docs.astral.sh/ruff/linter/ | ||
ignore = ["E731"] | ||
exclude = ["src/gen/*"] | ||
exclude = [ "src/gen/*" ] | ||
ignore = [ "E731" ] | ||
select = [ | ||
# isort | ||
"I001" | ||
# isort | ||
"I001", | ||
] | ||
|
||
[tool.ruff.format] | ||
# https://docs.astral.sh/ruff/formatter/ | ||
exclude = ["src/gen/*"] | ||
exclude = [ "src/gen/*" ] |
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 |
---|---|---|
@@ -1 +1 @@ | ||
requests==2.32.0 | ||
requests==2.32.3 |