1 Star 1 Fork 0

wuyue92tree / crwy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 870 Bytes
一键复制 编辑 原始数据 按行查看 历史
wuyue92tree 提交于 2020-02-04 12:18 . fix install issue under windows
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from crwy import version
install_requires = []
with open('requirements.txt', 'r') as f:
for req in f.readlines():
install_requires.append(req.strip('\n'))
setup(
name='Crwy',
version=version,
url='https://github.com/wuyue92tree/crwy',
description='A Simple Web Crawling and Web Scraping framework',
long_description=open('README.rst', encoding='utf-8').read(),
author='wuyue',
author_email='wuyue92tree@163.com',
maintainer='wuyue',
maintainer_email='wuyue92tree@163.com',
license='MIT',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['crwy = crwy.cmdline:execute']
},
install_requires=install_requires,
)
Python
1
https://gitee.com/wuyue92tree/crwy.git
git@gitee.com:wuyue92tree/crwy.git
wuyue92tree
crwy
crwy
master

搜索帮助