forked from GeneralNewsExtractor/GeneralNewsExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 647 Bytes
/
setup.py
File metadata and controls
20 lines (20 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name='GeneralNewsExtractor',
packages=find_packages(exclude=[]),
install_requires=['lxml', 'numpy'],
version='0.0.3',
description='General extractor of news pages.',
author='Kingname',
author_email='contact@kingname.info',
url='https://github.com/kingname/GeneralNewsExtractor',
keywords=['python', 'webcrawler', 'webspider'],
python_requires='>=3.6',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: MIT',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)