-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
37 lines (34 loc) · 1.17 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
from codecs import open
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='articleDateExtractor',
packages=['articleDateExtractor'],
version='0.20',
author='Ran Geva',
author_email='ran@webhose.io, yitao.sun@yahoo.com, wilson.s.shilo@gmail.com',
url='https://github.com/Webhose/article-date-extractor',
license='MIT',
description='Automatically extracts and normalizes an online article or blog post publication date',
long_description=readme,
install_requires=[
"beautifulsoup4 >= 4.6.0",
"python-dateutil >= 2.4.2"
],
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
)
)