-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (43 loc) · 1.61 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
# -*- coding: utf-8 -*-
import doctest
import unittest
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
def vcr_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests', pattern='test_*.py')
test_suite.addTest(doctest.DocTestSuite('test_doctest'))
return test_suite
setup(
name='vcr',
version='0.0.9',
description='VCR - decorator for capturing and simulating network ' +
'communication',
long_description=readme,
author='The ObsPy Development Team',
author_email='[email protected]',
url='https://github.com/obspy/vcr',
download_url='https://github.com/obspy/vcr/archive/master.zip',
license="GNU Lesser General Public License",
packages=find_packages(exclude=('tests', 'docs')),
test_suite='setup.vcr_test_suite',
setup_requires=[],
tests_require=['requests'],
platforms='OS Independent',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 ' +
'(LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'],
)