-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 842 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='github-fetch-pullrequest',
version='0.0.2',
author='Josef Hák',
author_email='[email protected]',
description='Script to pull request from GitHub.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/Josca/github-fetch-pullrequest',
license='GPLv2',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
install_requires=[
'simplejson==3.16.0',
'gitpython==2.1.11'
],
entry_points='''
[console_scripts]
github-fetch-pullrequest=github_fetch_pullrequest.cmd:cmd
''',
)