-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (45 loc) · 1.65 KB
/
setup.py
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
from pathlib import Path
from setuptools import setup
import gitbranchstack
HERE = Path(__file__).resolve().parent
setup(
name="git-branchstack",
version=gitbranchstack.__version__,
packages=["gitbranchstack"],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"git-branchstack = gitbranchstack.main:main",
],
},
scripts=["git-branchstack-pick"],
author="Johannes Altmanninger",
author_email="[email protected]",
description="Efficiently manage Git branches without leaving your local branch",
long_description=(HERE / "README.md").read_text(),
long_description_content_type="text/markdown",
license="MIT",
keywords="git branch-workflow pull-request patch-stack",
url="https://github.com/krobelus/git-branchstack/",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Environment :: Console",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Version Control :: Git",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
project_urls={
"Bug Tracker": "https://github.com/krobelus/git-branchstack/issues/",
"Source Code": "https://github.com/krobelus/git-branchstack/",
"Documentation": "https://git.sr.ht/~krobelus/git-branchstack/",
},
install_requires=[
"git-revise==0.7.0",
],
)