-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (30 loc) · 1.12 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='livetest',
version='0.5',
description='Test against a live site with an API like Paste WebTest',
long_description=file('README.rst').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Paste",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Testing"
],
keywords='http integration wsgi test unit tests testing web functional',
author='Scott Torborg',
author_email='storborg@mit.edu',
url='http://github.com/storborg/livetest',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'tests']),
include_package_data=True,
install_requires=['WebTest>=1.2'],
tests_require=['nose>=0.10'],
test_suite='nose.collector',
zip_safe=False)