forked from MattDMo/NYTimesArticleAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.53 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
42
43
import ez_setup
ez_setup.use_setuptools() # in case users don't have setuptools installed
from setuptools import setup
import NYTimesArticleAPI
setup(
name="NYTimesArticleAPI",
description="Python wrapper for the New York Times Article Search API",
version=NYTimesArticleAPI.__version__,
author=NYTimesArticleAPI.__author__,
author_email="[email protected]",
url="https://github.com/MattDMo/NYTimesArticleAPI",
license="MIT",
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
"Topic :: Office/Business :: News/Diary",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"requests >= 2.7.0",
],
packages=[
"NYTimesArticleAPI",
],
keywords="nytimes new york times api article search nyt journalism news",
test_suite="NYTimesArticleAPI.tests.NYTimesArticleAPITests",
zip_safe=True,
)