forked from goodgit-cli/goodgit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 823 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 823 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
from setuptools import setup, find_packages
from pathlib import Path
# read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='goodgit',
version='0.1.22',
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',
],
},
)