forked from django-webtest/django-webtest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (36 loc) · 1.38 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·43 lines (36 loc) · 1.38 KB
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
#!/usr/bin/env python
from distutils.core import setup
for cmd in ('egg_info', 'develop'):
import sys
if cmd in sys.argv:
from setuptools import setup
version='1.5.3'
setup(
name='django-webtest',
version=version,
author='Mikhail Korobov',
author_email='kmike84@gmail.com',
packages=['django_webtest'],
url='https://bitbucket.org/kmike/django-webtest/',
download_url = 'https://bitbucket.org/kmike/django-webtest/get/tip.zip',
license = 'MIT license',
description = """ Instant integration of Ian Bicking's WebTest
(http://pythonpaste.org/webtest/) with django's testing framework.""",
long_description = open('README.rst').read() + open('CHANGES.txt').read(),
requires = ['webtest (>= 1.3.3)'],
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.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
],
)