forked from himanshu231204/run-git
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "run-git"
version = "1.0.5"
description = "Git Made Easy - One Command To Rule Them All"
readme = "README.md"
authors = [
{name = "Himanshu Kumar", email = "himanshu231204@gmail.com"},
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control :: Git",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
keywords = ["git", "cli", "automation", "version-control", "developer-tools"]
requires-python = ">=3.8"
dependencies = [
"click>=8.0.0",
"rich>=13.0.0",
"GitPython>=3.1.0",
"PyGithub>=1.59.0",
"questionary>=1.10.0",
"pyyaml>=6.0",
"requests>=2.28.0",
]
[project.urls]
Homepage = "https://github.com/himanshu231204/gitpush"
Documentation = "https://github.com/himanshu231204/gitpush#readme"
Repository = "https://github.com/himanshu231204/gitpush"
"Bug Tracker" = "https://github.com/himanshu231204/gitpush/issues"
[project.scripts]
run-git = "gitpush.cli:main"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]