-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (59 loc) · 1.97 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
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
from distutils.core import setup
from os.path import dirname, realpath
from os import sep
from setuptools import find_packages
from setuptools.command.test import test as TestCommand
import sys
pip_requirements = realpath(dirname(__file__)) + sep + 'requirements.txt'
class Tox(TestCommand):
"""The test command should install and then run tox.
Based on http://tox.readthedocs.org/en/latest/example/basic.html
"""
def finalize_options(self):
super().finalize_options()
self.test_args = []
self.test_suite = True
def run_tests(self):
import tox # Import here, because outside eggs aren't loaded.
sys.exit(tox.cmdline(self.test_args))
setup(
# Basic metadata
name='fauxquests',
version=open('VERSION').read().strip(),
author='Luke Sneeringer',
author_email='luke@sneeringer.com',
url='https://github.com/lukesneeringer/fauxquests',
# Additional information
description=' '.join((
'Mock HTTP requests sent with the requests package.',
'For Python 2 or Python 3.',
)),
license='New BSD',
# What does this require?
install_requires=open(pip_requirements, 'r').read().strip().split('\n'),
# How to do the install
provides=[
'fauxquests',
],
packages=[i for i in find_packages() if i.startswith('fauxquests')],
# How to do the tests
tests_require=['tox'],
cmdclass={'test': Tox },
# Data files
package_data={
'fauxquests': ['VERSION'],
},
# PyPI metadata
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
],
)