7 Star 14 Fork 7

Gitee 极速下载/Graphviz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/xflr6/graphviz
克隆/下载
setup.py 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
Sebastian Bank 提交于 2025-05-31 02:47 +08:00 . remove deprecated license classifier
import pathlib
from setuptools import setup, find_packages
setup(
name='graphviz',
version='0.20.4.dev0',
author='Sebastian Bank',
author_email='sebastian.bank@uni-leipzig.de',
description='Simple Python interface for Graphviz',
keywords='graph visualization dot render',
license='MIT',
url='https://github.com/xflr6/graphviz',
project_urls={
'Documentation': 'https://graphviz.readthedocs.io',
'Changelog': 'https://graphviz.readthedocs.io/en/latest/changelog.html',
'Issue Tracker': 'https://github.com/xflr6/graphviz/issues',
'CI': 'https://github.com/xflr6/graphviz/actions',
'Coverage': 'https://codecov.io/gh/xflr6/graphviz',
},
packages=find_packages(),
platforms='any',
python_requires='>=3.9',
extras_require={
'dev': ['tox>=3', 'flake8', 'pep8-naming', 'wheel', 'twine'],
'test': ['pytest>=7,<8.1', # https://github.com/pytest-dev/pytest/issues/12123
'pytest-mock>=3',
'pytest-cov', 'coverage'],
'docs': ['sphinx>=5,<7',
'sphinx-autodoc-typehints',
'sphinx-rtd-theme>=0.2.5'],
},
long_description=pathlib.Path('README.rst').read_text(encoding='utf-8'),
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Visualization',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/Graphviz.git
git@gitee.com:mirrors/Graphviz.git
mirrors
Graphviz
Graphviz
master

搜索帮助