forked from redhat-aqe/review-rot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 756 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
28
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
setup(name='review-rot',
version='0.0',
author='Nirzari Iyer',
author_email='[email protected]',
description=('CLI tool to list review(pull) requests from '
'github, gitlab and pagure'),
long_description=long_description,
license='GPLv3',
url='https://github.com/nirzari/review-rot',
packages=find_packages(),
install_requires=[
'PyGithub',
'PyYAML',
'dateutils',
'python-gitlab'
],
tests_require=[
'nose',
'mock',
],
test_suite='nose.collector',
scripts=['bin/review-rot']
)