资源简介
python snownlp-0.12.3.tar.gz
代码片段和文件信息
import os
import sys
import subprocess
try:
from setuptools import setup find_packages
except ImportError:
from distutils.core import setup
from distutils.util import convert_path
def _find_packages(where=‘.‘ exclude=()):
“““Return a list all Python packages found within directory ‘where‘
‘where‘ should be supplied as a “cross-platform“ (i.e. URL-style)
path; it will be converted to the appropriate local path syntax.
‘exclude‘ is a sequence of package names to exclude; ‘*‘ can be used
as a wildcard in the names such that ‘foo.*‘ will exclude all
subpackages of ‘foo‘ (but not ‘foo‘ itself).
“““
out = []
stack = [(convert_path(where) ‘‘)]
while stack:
where prefix = stack.pop(0)
for name in os.listdir(where):
fn = os.path.join(where name)
if (‘.‘ not in name and os.path.isdir(fn) and
os.path.isfile(os.path.join(fn ‘__init__.py‘))):
out.append(prefix+name)
stack.append((fn prefix + name + ‘.‘))
for pat in list(exclude)+[‘ez_setup‘ ‘distribute_setup‘]:
from fnmatch import fnmatchcase
out = [item for item in out if not fnmatchcase(item pat)]
PUBLISH_CMD = ‘python setup.py register sdist upload‘
if ‘publish‘ in sys.argv:
status = subprocess.call(PUBLISH_CMD shell=True)
sys.exit(status)
def read(fname):
with open(fname) as fp:
content = fp.read()
return content
setup(
name=‘snownlp‘
version=‘0.12.3‘
description=‘Python library for processing Chinese text‘
author=‘isnowfy‘
url=‘https://github.com/isnowfy/snownlp‘
packages=find_packages(exclude=(‘test*‘ ))
classifiers=[
‘Development Status :: 3 - Alpha‘
‘Intended Audience :: Developers‘
‘License :: OSI Approved :: MIT License‘
‘Programming Language :: Python‘
]
package_data={‘‘: [‘*.md‘ ‘*.txt‘ ‘*.marshal‘ ‘*.marshal.3‘]}
include_package_data=True
)
相关资源
- python实现SGBM图像匹配算法
- python实现灰度直方图均衡化
- scrapy_qunar_one
- Python学习全系列教程永久可用
- python简明教程.chm
- 抽奖大转盘python的图形化界面
- 双边滤波器实验报告及代码python
- python +MYSQL+HTML实现21蛋糕网上商城
- Python-直播答题助手自动检测出题搜索
- OpenCV入门教程+OpenCV官方教程中文版
- Python 串口工具源码+.exe文件
- Python开发的全栈股票系统.zip
- Python操作Excel表格并将其中部分数据写
- python书籍 PDF
- 利用python绘制散点图
- python+labview+No1.vi
- 老男孩python项目实战
- python源码制作whl文件.rar
- python3.5可用的scipy
- PYTHON3 经典50案例.pptx
- 计算机科学导论-python.pdf
- python模拟鼠标点击屏幕
- windows鼠标自动点击py脚本
- 鱼c小甲鱼零基础学python全套课后题和
- Python 练习题100道
- Practical Programming 2nd Edition
- wxPython Application Development Cookbook
- python 3.6
- Python 3.5.2 中文文档 互联网唯一CHM版本
- python3.5.2.chm官方文档
评论
共有 条评论