-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 853 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
[project]
name = "memento"
version = "0.1.0"
description = "Photo album generation service that uses OpenAI models to generate a ghibli-fied version of the photo"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Ajay Bhargava", email = "bhargava.ajay@gmail.com" }
]
dependencies = [
"baml-py>=0.89.0",
"convex>=0.7.0",
"fastapi>=0.115.12",
"modal>=1.0.2",
"pydantic>=2.11.5",
"pytest",
"python-dotenv>=1.1.0",
"rich>=14.0.0",
"uvicorn>=0.27.0",
]
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["memento"]
package-dir = {"memento" = "src/memento"}
[tool.ruff]
src = ["src"]
line-length = 100
select = ["E", "F", "B", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["__test__"]
addopts = "-ra -q"