-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 780 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup # type: ignore
from pathlib import Path
setup(name='git-check-rebase',
version='0.5',
description='Some useful scripts to operate track history and patch '
'changes during rebases.',
author='Vladimir Sementsov-Ogievskiy',
author_email='vsementsov@yandex-team.ru',
long_description=Path('README.rst').read_text(),
long_description_content_type='text/x-rst',
license_files=('LICENSE'),
license='MIT',
scripts=['git-check-rebase'],
packages=['git_check_rebase'],
url='https://gitlab.com/vsementsov/git-check-rebase',
project_urls={
'Docs': 'https://git-check-rebase.readthedocs.io/en/latest/'
},
install_requires=['tabulate', 'termcolor'])