forked from Webhose/article-date-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 953 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
30
31
32
33
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.17',
author='Ran Geva',
author_email='[email protected]',
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.5.1",
"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 :: 3.0',
)
)