This repository has been archived by the owner on Dec 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·63 lines (55 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
# coding=utf-8
"""A setuptools-based script for installing Pulp 2 Tests.
For more information, see:
* https://packaging.python.org/en/latest/index.html
* https://docs.python.org/distutils/sourcedist.html
"""
from setuptools import find_packages, setup # prefer setuptools over distutils
with open('README.rst') as handle:
LONG_DESCRIPTION = handle.read()
with open('VERSION') as handle:
VERSION = handle.read().strip()
setup(
name='pulp-2-tests',
version=VERSION,
description='Functional tests for Pulp 2',
long_description=LONG_DESCRIPTION,
url='https://github.com/PulpQE/pulp-2-tests',
author='Jeremy Audet',
author_email='[email protected]',
license='GPLv3',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
('License :: OSI Approved :: GNU General Public License v3 or later '
'(GPLv3+)'),
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(include=['pulp_2_tests', 'pulp_2_tests.*']),
install_requires=[
'jsonschema',
'packaging',
'pulp-smash>=1!0.0.1,<1!1',
'python-dateutil',
'pytest==4.1.0',
],
extras_require={
'dev': [
# For `make lint`
'flake8',
'flake8-docstrings',
'flake8-quotes',
'pydocstyle<4.0',
'pylint',
# For `make docs-html` and `make docs-clean`
'sphinx',
# For `make package`
'wheel',
# For `make publish`
'twine',
],
},
)