-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
29 lines (26 loc) · 1016 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import rottentomatoes
setup(name="rottentomatoes",
version="2.1",
description="Rotten Tomatoes Python API",
long_description=rottentomatoes.RT.__doc__,
keywords="rottentomatoes movies rotten tomatoes zachwill",
author="Zach Williams",
author_email="hey@zachwill.com",
url="https://github.com/zachwill/rottentomatoes",
license="Unlicense (a.k.a. Public Domain)",
packages=["rottentomatoes"],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
],
test_suite="test.py",
tests_require=["mock", "Mock"])