-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (32 loc) · 1.02 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
from setuptools import setup, find_packages
import os
setup(
name="newsfeed",
version="0.1.3",
keywords="GDELT NewsFeed",
long_description=open(os.path.join(os.path.dirname(__file__),
'README.md')).read(),
long_description_content_type='text/markdown',
author="Cyclododecene",
author_email="[email protected]",
url="https://github.com/Cyclododecene/newsfeed",
packages=find_packages(exclude=["test", "example"]),
install_requires=[
"numpy>=1.15.4",
"pandas>=0.25",
"requests>=2.22.0",
"tqdm>=4.62.1",
"newspaper3k>=0.2.5",
"lxml>=4.4.2"
],
license="MIT",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)