-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (62 loc) · 2 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import os.path
from setuptools import find_packages, setup
with open("README.rst", encoding="utf-8") as f:
readme = f.read()
with open("CHANGES.rst", encoding="utf-8") as f:
history = f.read()
with open(os.path.join("scrapyd_client", "VERSION")) as f:
version = f.read().strip()
setup(
name="scrapyd-client",
version=version,
description="A client for Scrapyd",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
author="Scrapy developers",
author_email="[email protected]",
url="https://github.com/scrapy/scrapyd-client",
packages=find_packages(exclude=("tests", "tests.*")),
include_package_data=True,
install_requires=[
"uberegg>=0.1.1",
"requests",
"scrapy>=0.17",
"urllib3",
"w3lib",
],
extras_require={
"test": [
"pytest",
"pytest-console-scripts",
"pytest-cov",
"pytest-mock",
]
},
python_requires=">=3.6",
license="BSD",
zip_safe=False,
entry_points={
"console_scripts": [
"scrapyd-deploy = scrapyd_client.deploy:main",
"scrapyd-client = scrapyd_client.cli:main",
]
},
classifiers=[
"Framework :: Scrapy",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
],
)