-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
69 lines (61 loc) · 1.84 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
68
69
import os
import re
from setuptools import find_packages, setup
_version_re = re.compile(r"__version__\s+=\s+(.*)")
def read_version():
regexp = re.compile(r'^__version__\W*=\W*"([\d.abrc]+)"')
init_py = os.path.join(os.path.dirname(__file__), "traspider", "__init__.py")
with open(init_py) as f:
for line in f:
match = regexp.match(line)
if match is not None:
return match.group(1)
def read(file_name):
with open(
os.path.join(os.path.dirname(__file__), file_name), mode="r", encoding="utf-8"
) as f:
return f.read()
requires = [
"aiohttp",
"aiomysql",
"aiosignal",
"aiostream",
"async-timeout",
"asyncio",
"attrs",
"chardet",
"charset-normalizer",
"colorama",
"frozenlist",
"idna",
"loguru",
"lxml",
"multidict",
"node-vm2==0.3.5",
"PyMySQL",
"win32-setctime",
"yarl",
]
setup(
name="traspider",
version=read_version(),
author="NTrash",
author_email='[email protected]',
description="An out-of-the-box lightweight asynchronous crawler framework",
python_requires=">=3.7",
long_description=read("README.md"),
long_description_content_type="text/markdown",
license="MIT",
install_requires=requires,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["traspider = traspider.commands.cmdline:execute"]},
)