-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.1 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.1 KB
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
from setuptools import setup, find_packages
VERSION = '0.6.1'
DESCRIPTION = 'Scrapeops Scrapy SDK, is a monitoring tool for your Scrapy spiders.'
setup(name='scrapeops_scrapy',
description=DESCRIPTION,
long_description=DESCRIPTION,
author="ScrapeOps",
author_email="info@scrapeops.io",
version=VERSION,
license="BSD",
url="https://github.com/ScrapeOps/scrapeops-scrapy-sdk",
packages=find_packages(),
install_requires=[
"tld>=0.13.2",
"requests>=2.32.3",
"itemadapter>=0.11.0",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
python_requires=">=3.9",
)