forked from pulp/pulp-smash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·53 lines (44 loc) · 1.4 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
#!/usr/bin/env python
# coding=utf-8
"""A setuptools-based script for installing Pulp Smash.
For more information, see:
* https://packaging.python.org/en/latest/index.html
* https://docs.python.org/distutils/sourcedist.html
"""
from __future__ import unicode_literals
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-smash',
version=VERSION,
description='A library for testing Pulp',
long_description=LONG_DESCRIPTION,
url='http://www.ichimonji10.name',
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 :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
packages=find_packages(),
install_requires=[
'mock',
'packaging',
'plumbum',
'pyxdg',
'requests',
'unittest2',
],
test_suite='tests',
)