-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (34 loc) · 1.3 KB
/
setup.py
File metadata and controls
executable file
·39 lines (34 loc) · 1.3 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
35
36
37
38
39
import sys
from setuptools import setup, find_packages
PY_VER = sys.version_info
if PY_VER < (3, 6):
raise RuntimeError("Sprite doesn't support Python version prior 3.6")
setup(
name="spriterx",
version="0.1.1",
author="liyong",
description="Python 3.6+ web scraping micro-framework based on asyncio coroutine pool.",
long_description_content_type="text/markdown",
url="https://github.com/ttloveyy/sprite",
author_email="819078740@qq.com",
python_requires=">=3.6",
install_requires=["httptools", "bitarray", "w3lib", "typing"],
packages=find_packages(),
license="MIT",
classifiers=[
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
"Source": "https://github.com/ttloveyy/sprite",
},
)