-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·65 lines (59 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
executable file
·65 lines (59 loc) · 1.49 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
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codeecarbon-mcp"
version = "0.1.0"
requires-python = ">=3.12,<3.13"
authors = [
{ name = "Enzo Fernandez", email = "enzofernandezecole@gmail.com" },
{ name = "Lucas Fritsch" },
{ name = "Axel Malherbe" },
{ name = "Jordi Oszust" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"alembic<2.0.0",
"bcrypt<5.0.0",
"python-dateutil<3.0.0",
"dependency-injector<5.0.0",
"fastapi[standard]<1.0.0",
"fief-client[fastapi]",
"httpx",
"psycopg2-binary<3.0.0",
"requests<3.0.0",
"sqlalchemy<2.0.0",
"uvicorn[standard]<1.0.0",
"fastapi-pagination<1.0.0",
"numpy",
"psutil",
"rapidfuzz",
"PyJWT",
"fastapi-oidc>=0.0.9",
"mcp>=1.13.0",
"codecarbon>=3.2.3",
]
[project.optional-dependencies]
dev = [
"pytest",
"mock",
"responses",
"requests-mock",
]
[project.urls]
Homepage = "https://codecarbon.io/"
Repository = "https://github.com/mlco2/codecarbon"
Dashboard = "http://dashboard.codecarbon.io/"
Documentation = "https://mlco2.github.io/codecarbon/"
Issues = "https://github.com/mlco2/codecarbon/issues"
Changelog = "https://github.com/mlco2/codecarbon/releases"
[tool.hatch.build.targets.wheel]
packages = ["carbonserver"]
[tool.hatch.build]
include = ["carbonserver"]
[tool.pytest.ini_options]
pythonpath = "."