-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
35 lines (31 loc) · 1.14 KB
/
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
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
try:
with open('requirements.txt', 'rb') as f:
install_requires = f.read().decode('utf-8').split('\n')
except IOError:
install_requires = []
try:
with open('test-requirements.txt', 'rb') as f:
tests_require = f.read().decode('utf-8').split('\n')
except IOError:
tests_require = []
setup(name='review-rot',
version='1.0',
author='Maximilian Kosiarcik, Nirzari Iyer, Pavlina Bortlova,'
' Sid Premkumar',
author_email='[email protected], [email protected], '
description=('CLI tool to list review(pull) requests from '
'gerrit, github, gitlab, pagure and phabricator'),
long_description=long_description,
license='GPLv3',
url='https://github.com/redhat-aqe/review-rot',
packages=find_packages(),
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
scripts=['bin/review-rot'],
include_package_data=True
)