-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (38 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name="git-glow",
version="0.2.12",
packages=find_packages(),
author="Nicolas RAMY",
author_email="[email protected]",
license="MIT",
description=(
"A new git extension to use git flow "
"branching model automatically with Jira and Github"
),
long_description=open("DESCRIPTION.rst").read(),
entry_points={
"console_scripts": ["git-glow=glow.__main__:main"],
},
install_requires=[
"colorama==0.4.4",
"click==8.1.3",
"emoji==1.2.0",
"gitpython==3.1.37",
"idna==2.10",
"python-slugify==4.0.1",
"requests==2.31.0",
"semver==2.13.0",
"termcolor==1.1.0",
"urllib3[secure]==1.26.18",
],
url="https://github.com/nicolasramy/git-glow",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Terminals",
"Topic :: Utilities",
],
)