-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (44 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
46 lines (44 loc) · 1.28 KB
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
[project]
name = "github-clear"
version = "1.0.0"
description = "All-in-one GitHub/Gitee Repository Manager & Profile Beautifier"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "JackFeng", email = "itdocs@163.com"}
]
keywords = ["github", "gitee", "repository", "profile", "readme", "manager"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"jinja2>=3.1.2",
"python-multipart>=0.0.6",
"PyGithub>=2.1.1",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"pandas>=2.1.0",
"Pillow>=10.0.0",
]
[project.urls]
Homepage = "https://github.com/A2Data/github-clear"
Repository = "https://github.com/A2Data/github-clear"
Issues = "https://github.com/A2Data/github-clear/issues"
[dependency-groups]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]