-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
setup.py
59 lines (48 loc) · 1.65 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
#!/usr/bin/env python
import io
from pkgutil import walk_packages
from setuptools import setup
def find_packages(path):
# This method returns packages and subpackages as well.
return [name for _, name, is_pkg in walk_packages([path]) if is_pkg]
def read_file(filename):
with open(filename) as fp:
return fp.read().strip()
def read_rst(filename):
# Ignore unsupported directives by pypi.
content = read_file(filename)
return "".join(
line for line in io.StringIO(content) if not line.startswith(".. comment::")
)
def read_requirements(filename):
return [
line.strip()
for line in read_file(filename).splitlines()
if not line.startswith("#")
]
setup(
name="scrapy-redis",
version=read_file("VERSION"),
description="Redis-based components for Scrapy.",
long_description=read_rst("README.rst") + "\n\n" + read_rst("HISTORY.rst"),
author="R Max Espinoza",
author_email="[email protected]",
url="https://github.com/rmax/scrapy-redis",
packages=list(find_packages("src")),
package_dir={"": "src"},
install_requires=read_requirements("requirements.txt"),
include_package_data=True,
license="MIT",
keywords="scrapy-redis",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)