forked from attilaolah/diffbot.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (48 loc) · 1.5 KB
/
setup.py
File metadata and controls
54 lines (48 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
"""Python client for the Diffbot API."""
import sys
from setuptools import setup
PY_VERSION = sys.version_info[0], sys.version_info[1]
REQUIREMENTS = []
if PY_VERSION == (2, 6):
REQUIREMENTS.append('argparse')
with open('README.rst') as README:
LONG_DESCRIPTION = README.read()
setup(
name='diffbot',
version='2.0.0',
url='https://github.com/attilaolah/diffbot.py',
license='MIT',
author='Attila Oláh',
author_email='attilaolah@gmail.com',
description="Python client for the Diffbot API.",
long_description=LONG_DESCRIPTION,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
],
install_requires=REQUIREMENTS,
tests_require=REQUIREMENTS+[
"requests",
"nose",
],
py_modules=['diffbot'],
include_package_data=False,
entry_points={
'console_scripts': [
'diffbot = diffbot:cli',
],
},
test_suite='nose.collector',
zip_safe=True,
use_2to3=True,
)