ipydrawio/py_packages/ipydrawio/setup.cfg

96 wiersze
2.6 KiB
INI

# Copyright 2023 ipydrawio contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[metadata]
name = ipydrawio
description = Draw.io Diagrams as Jupyter Widgets
long_description = file: ./README.md
long_description_content_type = text/markdown
url = https://ipydrawio.rtfd.io
author = ipydrawio Contributors
author_email = ripxl@example.com
license = Apache-2.0
license_files = LICENSE.txt
project_urls =
Bug Tracker = https://github.com/deathbeds/ipydrawio/issues
Changelog = https://github.com/deathbeds/ipydrawio/blob/master/CHANGELOG.md
Coverage = https://app.codecov.io/gh/deathbeds/ipydrawio
Documentation = https://ipydrawio.rtfd.io
Source Code = https://github.com/deathbeds/ipydrawio
classifiers =
Development Status :: 4 - Beta
Framework :: Jupyter
Framework :: Jupyter :: JupyterLab :: 3
Framework :: Jupyter :: JupyterLab :: Extensions
Framework :: Jupyter :: JupyterLab :: Extensions :: Mime Renderers
Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Multimedia :: Graphics :: Editors :: Vector-Based
Topic :: Multimedia :: Graphics :: Presentation
[options]
python_requires = >=3.8
package_dir =
= src
packages = find:
include_package_data = True
zip_safe = False
install_requires =
jupyterlab ==3.*
ipydrawio-widgets ==1.3.0
[options.extras_require]
clean =
lxml
nbformat
lab =
jupyterlab ==3.*
jupyterlab_widgets >=1
all =
%(clean)s
%(lab)s
test =
%(all)s
jsonpointer
pytest
pytest-console-scripts
[options.packages.find]
where =
src
[options.entry_points]
console_scripts =
jupyter-ipydrawio = ipydrawio.app:main
[coverage:run]
branch = True
source_pkgs =
ipydrawio
concurrency = multiprocessing
parallel = True
[coverage:html]
show_contexts = True