-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 952 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 952 Bytes
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
from pathlib import Path
from setuptools import setup, find_packages
# The directory containing this file
here = Path(__file__).parent
# The text of the README file
readme = (here / 'README.md').read_text()
# This call to setup() does all the work
setup(
name='spiegel-scraper',
version='1.1.1',
description='Scrape article metadata and comments from DER SPIEGEL',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/ietz/spiegel-scraper',
author='Tim Pietz',
author_email='tim@pietz.me',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'cssselect',
'dateparser',
'lxml',
'requests',
'tldextract',
],
)