-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.38 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "okcourse"
version = "0.1.13"
description = "Generate audiobook-style courses with lectures on any topic using Python and AI."
readme = "README.md"
license = { text = "CC0 1.0 Universal" }
authors = [
{ name = "Marsh Macy", email = "[email protected]" }
]
requires-python = ">=3.12"
dependencies = [
"mutagen>=1.47.0",
"nltk>=3.9.1",
"openai>=1.61.0",
]
[project.urls]
Homepage = "https://github.com/mmacy/okcourse/"
Documentation = "https://mmacy.github.io/okcourse"
Repository = "https://github.com/mmacy/okcourse/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"aiofiles>=24.1.0",
"hatchling>=1.27.0",
"pytest>=8.3.4",
"questionary>=2.0.1",
"streamlit>=1.41.0",
]
docs = [
"black>=24.10.0",
"griffe-pydantic>=1.1.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-git-committers-plugin-2>=2.4.1",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-material>=9.5.49",
"mkdocstrings-python>=1.12.2",
"pydantic>=2.10.4",
]
[tool.uv.sources]
okcourse = { workspace = true }
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
[tool.hatch.build.targets.wheel]
packages = ["src/okcourse"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/okcourse/"
publish-url = "https://test.pypi.org/legacy/"