forked from SatelliteQE/betelgeuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.17 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
36
37
#!/usr/bin/env python
# coding=utf-8
"""A setuptools-based script for installing Betelgeuse."""
from setuptools import setup
with open('README.rst') as handle:
LONG_DESCRIPTION = handle.read()
with open('VERSION') as handle:
VERSION = handle.read().strip()
setup(
name='Betelgeuse',
author='Elyézer Rezende, Og Maciel',
author_email='erezende@redhat.com, omaciel@redhat.com',
version=VERSION,
py_modules=['betelgeuse'],
install_requires=['click', 'testimony'],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
],
description=('Betelgeuse reads standard Python test cases and offers '
'tools to interact with Polarion.'),
entry_points='''
[console_scripts]
betelgeuse=betelgeuse:cli
''',
include_package_data=True,
license='GPLv3',
long_description=LONG_DESCRIPTION,
package_data={'': ['LICENSE']},
url='https://github.com/SatelliteQE/betelgeuse',
)