-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (36 loc) · 975 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "mind-renderer"
version = "0.1.0"
description = "An open-source project that aims to democratize video creation by harnessing the power of AI to translate thoughts into visual narratives."
authors = ["Yx Jiang <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "mind_renderer"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pydantic = "^2.8.2"
polymind = "^0.0.56"
notion-client = "^2.2.1"
dspy-ai = "^2.4.12"
load-dotenv = "^0.1.0"
groq = "^0.9.0"
retrying = "^1.3.4"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
flake8 = "7.1.0"
pytest = "^8.2.2"
coverage = "^7.6.0"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
skip = ["__init__.py"]
[tool.coverage.run]
source = ["mind_renderer"]
[tool.coverage.report]
ignore_errors = true