-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 878 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 878 Bytes
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
from setuptools import setup, find_packages
from pathlib import Path
# read the contents of your README file
this_directory = Path(__file__).parent
# Explicitly specify encoding as UTF-8
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name='goodgit',
version='0.1.29',
packages=find_packages(),
description='Git; for humans',
long_description=long_description,
long_description_content_type='text/markdown',
author='Shubham Gupta • Saket Gupta',
author_email='shubhastro2@gmail.com',
install_requires=[
'requests',
'GitPython',
'questionary',
'rich',
'docopt',
'halo',
'remote-log',
],
entry_points={
'console_scripts': [
'gg = goodgit.goodgit:main',
'goodgit = goodgit.goodgit:main',
],
},
)