1 Star 0 Fork 0

stoneqp/Unipath

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
Mike Orr 提交于 2015-02-10 20:19 . Release version 1.1.
from setuptools import setup, find_packages
VERSION = "1.1"
DESCRIPTION = """\
Unipath is an object-oriented front end to the file/directory functions
scattered throughout several Python library modules. It's based on Jason
Orendorff's *path.py* but has a friendlier API and higher-level features.
Unipath is stable, well-tested, and has been used in production since 2008.
It runs on Python 2.6+ and 3.3+.
**Version 1.1** is a bugfix release. Most notably it fixes a Unicode
incompatibility on Python 3 under Windows (or operating systems with native
Unicpde filenames). The license is changed to MIT (from the Python license).
"""
setup(
name="Unipath",
version=VERSION,
description="Object-oriented alternative to os/os.path/shutil",
long_description=DESCRIPTION,
author="Mike Orr",
author_email="sluggoster@gmail.com",
url="https://github.com/mikeorr/Unipath",
packages=["unipath"],
license="MIT",
#platform="Multiplatform",
keywords="os.path filename pathspec path files directories filesystem",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stoneqp/Unipath.git
git@gitee.com:stoneqp/Unipath.git
stoneqp
Unipath
Unipath
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385