-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 826 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 826 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 pathlib import Path
from setuptools import find_packages, setup
setup(
name="scrapy-frontera",
description="Featured Frontera scheduler for Scrapy",
long_description=Path("README.rst").read_text(),
version="0.3.0",
licence="BSD",
url="https://github.com/scrapinghub/scrapy-frontera",
maintainer="Scrapinghub",
packages=find_packages(),
python_requires=">=3.9",
install_requires=(
"frontera>=0.7.2,<0.8",
"scrapy>=2.7.0",
"w3lib>=1.17.0",
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)