forked from django-webtest/django-webtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·65 lines (51 loc) · 1.79 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
#!/usr/bin/env python
import sys
from setuptools import setup
version = '1.9.4.dev0'
def _read(name):
if sys.version_info[0] < 3:
with open(name) as f:
return f.read()
else:
with open(name, encoding='utf8') as f:
return f.read()
def get_long_description():
return _read('README.rst') + "\n\n" + _read('CHANGES.rst')
setup(
name='django-webtest',
version=version,
author='Mikhail Korobov',
author_email='[email protected]',
packages=['django_webtest'],
url='https://github.com/django-webtest/django-webtest',
license='MIT license',
description=(
"Instant integration of Ian Bicking's WebTest "
"(http://docs.pylonsproject.org/projects/webtest/) "
"with django's testing framework."
),
long_description=get_long_description(),
install_requires=['webtest >= 1.3.3'],
entry_points="""
[pytest11]
django_webtest = django_webtest.pytest_plugin
""",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
],
)