-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.05 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
[project]
name = "gs-git-backup"
version = "1.0.0"
description = "GitHub backup and restore CLI tool with issues, PRs, and full repository history"
authors = [{ name="Geeta Systems", email="oss@geetasystems.co.in" }]
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
keywords = ["github", "backup", "restore", "cli", "issues", "pull requests"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Utilities",
]
dependencies = [
"requests>=2.28.0",
"PyGithub>=1.59" # optional, if you interact with GitHub API
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black",
"mypy"
]
[project.scripts]
gs_git_backup = "gs_git_backup.cli:main" # Use underscore in script name, hyphens can break imports
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"