38 lines
763 B
INI
38 lines
763 B
INI
[metadata]
|
|
name = pyWebLayout
|
|
version = 0.1.1
|
|
author = Duncan Tourolle
|
|
author_email = duncan@tourolle.paris
|
|
description = A Python library for HTML-like layout and rendering
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
url = https://gitea.tourolle.paris/pyWebLayout
|
|
classifiers =
|
|
Programming Language :: Python :: 3
|
|
License :: OSI Approved :: MIT License
|
|
Operating System :: OS Independent
|
|
|
|
[options]
|
|
packages = find:
|
|
python_requires = >=3.6
|
|
install_requires =
|
|
Pillow
|
|
numpy
|
|
|
|
[options.packages.find]
|
|
include = pyWebLayout*
|
|
|
|
[flake8]
|
|
exclude =
|
|
venv,
|
|
build,
|
|
dist,
|
|
.git,
|
|
__pycache__,
|
|
.pytest_cache,
|
|
*.egg-info
|
|
max-line-length = 120
|
|
extend-ignore = E203
|
|
per-file-ignores =
|
|
*:F841
|