-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (39 loc) · 1.07 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
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
try:
long_description = open("README.rst").read()
except IOError:
long_description = None
setup(
name='webunit2',
version='0.2.2',
description='Eases the testing of web services.',
license="GPL",
long_description=long_description,
author='Andrew McFague',
author_email='[email protected]',
maintainer='Andrew McFague',
maintainer_email='[email protected]',
url='https://github.com/amcfague/webunit2',
zip_safe=True,
packages=find_packages(exclude=["ez_setup", "tests"]),
install_requires=[
"httplib2",
"poster",
],
test_suite='nose.collector',
tests_require=[
"mock",
"nose",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
],
)