-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1017 Bytes
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
[project]
name = "eltariff"
version = "0.1.0"
description = "AI-drivet verktyg för att konvertera svenska elnätstariffer till RISE-standard API"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Sourceful Energy" }
]
keywords = ["eltariff", "rise", "api", "sweden", "electricity", "grid", "tariff"]
dependencies = [
"openai>=1.0.0",
"beautifulsoup4>=4.14.3",
"fastapi>=0.128.0",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"openpyxl>=3.1.0",
"pymupdf4llm>=0.0.17",
"pydantic>=2.12.5",
"python-dotenv>=1.2.1",
"python-multipart>=0.0.21",
"slowapi>=0.1.9",
"uvicorn>=0.40.0",
"crawl4ai>=0.7.8",
]
[project.scripts]
eltariff = "eltariff.main:app"
[project.urls]
Homepage = "https://eltariff.sourceful.energy"
Repository = "https://github.com/sourceful-energy/eltariff-ai-api"
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/eltariff"]