1 Star 0 Fork 0

lirenkai2000/format_converter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 955 Bytes
一键复制 编辑 原始数据 按行查看 历史
芮峰云 提交于 2016-01-04 23:14 . update
#coding:utf-8
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "format_converter",
version = "1.1",
author = "ruifengyun",
author_email = "rfyiamcool@163.com",
description = "format converter",
license = "MIT",
keywords = ["converter","fengyun"],
url = "https://github.com/rfyiamcool",
packages = find_packages(),
long_description = read('README.md'),
install_requires=['pyyaml'],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lirenkai2000/format_converter.git
git@gitee.com:lirenkai2000/format_converter.git
lirenkai2000
format_converter
format_converter
master

搜索帮助