Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
# Conflicts:
#	.idea/misc.xml
  • Loading branch information
babymm@aliyun.com committed Sep 28, 2018
2 parents 1c16c25 + 5dee83d commit 7fb710c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .idea/pcrawler.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .pypirc
@@ -0,0 +1,7 @@
[distutils]
index-servers =pypi

[pypi]
repository=https://upload.pypi.org/legacy/
username=babymm
password=loveCWS5211314
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -12,6 +12,7 @@
编译 python setup.py build
安装 python setup.py install
打包(源代码发布) python setup.py sdist
将项目上传到pypi python setup.py sdist upload
打包成可执行(exe、rpm) python setup.py bdist
--formats=rpm RPM distribution
--formats=gztar gzip'ed tar file
Expand All @@ -22,15 +23,19 @@
--formats=zip ZIP file
"""
setup(name="pcrawler",
version="0.0.1",
version="0.0.2",
description="python版本的爬虫程序。根据java版本的webmagic改编而成。该爬虫程序主要包含downloader、storage、processor、schemular等四大功能模块。通过该爬虫程序可以快速的编写一个自定义的爬虫程序。",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="甘亮",
author_email="lovercws@gmail.com",
keywords="python版本的爬虫程序",
# py_modules=["main"], #将一个模块打成包
packages=find_packages(),
license='Apache License',
include_package_data=True,
platforms="any",
url="https://github.com/mumupy/pcrawler.git",
install_requires=[],
scripts=[],
entry_points={
Expand Down

0 comments on commit 7fb710c

Please sign in to comment.