mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
28 lines
844 B
Python
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"]
|
|
) |