pyecharts/setup.py
2017-07-10 13:01:52 +08:00

28 lines
844 B
Python

import os
import sys
from setuptools import setup
setup(
name="pyecharts",
version="1.3",
# description=about['__summary__'],
# url=about['__uri__'],
author="chenjiandongx",
author_email="chenjiandongx@qq.com",
# license=about['__license__'],
# platforms="Any",
packages=['pyecharts'],
requires=['pprint'],
# provides=['pygal'],
# classifiers=[
# "Development Status :: 4 - Beta",
# "Environment :: Console",
# "Intended Audience :: End Users/Desktop",
# "License :: OSI Approved :: "
# "GNU Lesser General Public License v3 or later (LGPLv3+)",
# "Operating System :: OS Independent",
# "Programming Language :: Python :: 2",
# "Programming Language :: Python :: 3",
# "Topic :: Multimedia :: Graphics :: Presentation"]
)