加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
chfw 提交于 2017-07-29 07:49 . remove unintended change
#!/usr/bin/env python
#coding=utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__title__ = 'pyecharts'
__description__ = 'Python echarts, make charting easier'
__url__ = 'https://github.com/chenjiandongx/pyecharts'
__version__ = '0.1.8'
__author__ = 'chenjiandongx'
__author_email__ = 'chenjiandongx@qq.com'
__license__ = 'MIT'
__requires__ = ['pprint', 'Image', 'jinja2']
__packages__ = ['pyecharts', 'pyecharts/charts']
__keywords__ = ['echarts', 'charts']
setup(
name=__title__,
version=__version__,
description=__description__,
url=__url__,
author=__author__,
author_email=__author_email__,
license=__license__,
packages=__packages__,
keywords=__keywords__,
install_requires=__requires__,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化