1 Star 0 Fork 0

stoneqp/haipproxy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
resolvewang 提交于 2018-06-18 10:40 . reduce some dependencies
from os import path as os_path
from setuptools import setup
import haipproxy
this_directory = os_path.abspath(os_path.dirname(__file__))
def read_file(filename):
with open(os_path.join(this_directory, filename), encoding='utf-8') as f:
long_description = f.read()
return long_description
def read_requirements(filename):
return [line.strip() for line in read_file(filename).splitlines()
if not line.startswith('#')]
setup(
name='haipproxy',
python_requires='>=3.4.0',
version=haipproxy.__version__,
description="High aviariable proxy pool client for crawlers.",
long_description=read_file('README.md'),
long_description_content_type="text/markdown",
author="Resolvewang",
author_email='resolvewang@foxmail.com',
url='https://github.com/SpiderClub/haipproxy',
packages=[
'haipproxy',
'haipproxy.client',
'haipproxy.config',
'haipproxy.utils'
],
install_requires=read_requirements('requirements-cli.txt'),
include_package_data=True,
license="MIT",
keywords=['proxy', 'client', 'haipproxy'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stoneqp/haipproxy.git
git@gitee.com:stoneqp/haipproxy.git
stoneqp
haipproxy
haipproxy
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385