-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.19 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "morpheus-api-python"
version = "0.1.0"
description = "Morpheus API Gateway connecting Web2 clients to the Morpheus-Lumerin AI Marketplace"
authors = ["Morpheus Team <dev@morpheus.com>"]
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
fastapi = "^0.110.0"
uvicorn = "^0.27.0"
pydantic = "^2.6.0"
pydantic-settings = "^2.1.0"
sqlalchemy = "^2.0.25"
asyncpg = "^0.29.0"
alembic = "^1.13.1"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
httpx = {extras = ["http2"], version = "^0.26.0"}
requests = "^2.31.0"
cryptography = "^42.0.0"
python-dotenv = "^1.0.0"
email-validator = "^2.1.0"
boto3 = "^1.34.0"
structlog = "^23.2.0"
python-multipart = "0.0.20"
stripe = "^11.0.0"
cdp-sdk = "^1.4.0"
web3 = "^7.0.0"
eth-account = "^0.13.0"
redis = "^5.0.0"
siwe = "^4.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
black = "^23.7.0"
ruff = "^0.1.6"
mypy = "^1.5.1"
locust = "2.27.0"
rich = "14.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"."
]
asyncio_mode = "auto"