-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 957 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 957 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
34
35
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('git-github-reflog').read(),
re.M
).group(1)
setup(
name='git-github-reflog',
version=version,
description='reflog like interaction with Github',
long_description=
"A git extension for viewing the event log of a Github project.",
url='https://github.com/criswell/github-reflog',
author='Sam Hart',
author_email='hartsn@gmail.com',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Topic :: Software Development :: Version Control',
'Topic :: Utilities'
],
keywords='git github development',
install_requires=[
'requests', 'colorama', 'argparse'
],
scripts=['git-github-reflog']
)