This repository has been archived by the owner on Dec 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
"""A setuptools-based script for installing conduitqe."""
import os
from setuptools import find_packages, setup
_project_root = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(_project_root, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='conduitqe',
author='The PEAQe Authors',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Quality Assurance'
],
description=(
'A GPL-licensed Python library that facilitates functional testing of '
'rhsm-conduit.'
),
extras_require={
'dev': [
# For `make lint`
'flake8',
'flake8-docstrings',
'flake8-import-order',
'flake8-quotes',
# For `make test-coverage`
'pytest-cov',
],
},
install_requires=[
'pytest',
'requests',
'oc',
],
license='GPLv3',
long_description=long_description,
packages=find_packages(include=['conduitqe*']),
url='https://github.com/peaqe/conduit-qe',
)