-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 794 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 794 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
from setuptools import setup, find_packages
setup(
name='creepyCrawler',
version='1.0',
author='Irene Spanou',
description='Downloads stories from Creepypasta',
long_description='Downloads Creepypasta stories making one request per minute as requested in robots.txt,'
'sorted by rating descending',
url='https://github.com/iresil',
keywords='creepypasta, crawler, scraper',
python_requires='>=3.10, <4',
packages=find_packages(),
install_requires=[
'scrapy~=2.8.0',
'mysql~=0.0.3',
'mysql-connector-python~=8.0.32',
'protego~=0.2.1',
'requests~=2.28.2'
],
package_data={
},
entry_points={
'runners': [
'creepyCrawler=creepyCrawler:main',
]
}
)