-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (35 loc) · 1018 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
34
35
36
37
#!/usr/bin/env python
from distutils.core import setup
setup(
version='0.14',
name="amcatscraping",
description="Scrapers for AmCAT",
author="Wouter van Atteveldt, Martijn Bastiaan, Toon Alfrink",
author_email="[email protected]",
packages=["amcatscraping",
"amcatscraping.scrapers",
"amcatscraping.scrapers.newspapers",
"amcatscraping.scrapers.blogs",
"amcatscraping.scrapers.news",
],
package_data={
'amcatscraping': ['*.conf', 'templates/*.html'],
},
classifiers=[
"License :: OSI Approved :: AGPL3 License",
],
install_requires=[
"amcatclient",
"requests",
"html2text",
"cssselect",
"jinja2",
"django",
"docopt",
"lxml",
"tabulate",
"feedparser", 'redis', 'dateparser', 'iso8601',
"selenium",
# as long as amcat dependency exists, also pip install -r amcat/requirements.txt
],
)