-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
56 lines (53 loc) · 1.09 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
[project]
name = "src"
version = "0.1.0"
description = "Automated README file generator, powered by AI."
authors = [
{ name = "Eli", email = "[email protected]" }
]
license = { text = "Apache-2.0" }
readme = "README.md"
requires-python = ">=3.11,<4.0"
keywords = [
"ai-documentation",
"anthropic",
"badge-generator",
"developer-tools",
"documentation",
"documentation-generator",
"gemini",
"gpt",
"gpt-4",
"markdown",
"markdown-generator",
"markdown-md",
"readme-md",
"readme-md-generator",
"readme-generator",
"readme-template",
"readme-md-generator",
"streamlit",
]
dependencies = [
"readmeai==0.5.99post5",
"streamlit",
]
[project.optional-dependencies]
dev = [
"mypy",
"pre-commit",
"ruff",
]
test = [
"pytest==7.4.4",
"pytest-cov",
"pytest-randomly",
"pytest-sugar",
"pytest-xdist",
]
[project.urls]
Homepage = "https://github.com/eli64s/readme-ai"
Documentation = "https://eli64s.github.io/readme-ai"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"