-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 979 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 979 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
from setuptools import find_packages, setup
setup(
name="estela-entrypoint",
version="0.2.1",
description="Scrapy entrypoint for Estela job runner",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"Scrapy==2.10.0",
"requests",
"redis",
"boto3",
"estela-queue-adapter",
],
entry_points={
"console_scripts": [
"estela-crawl = estela_scrapy.__main__:main",
"estela-describe-project = estela_scrapy.__main__:describe_project",
"estela-report-deploy = estela_scrapy.__main__:report_deploy",
],
},
classifiers=[
"Framework :: Scrapy",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)