1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
[project]
name = "trame"
version = "3.12.0"
description = "Trame, a framework to build applications in plain Python"
authors = [{ name = "Kitware Inc." }]
dependencies = [
"trame-server>=3.4,<4",
"trame-client>=3.10.1,<4",
"trame-common>=1,<2",
"wslink>=2.3.3",
"pyyaml", # for trame.tools.widgets
]
requires-python = ">=3.9"
readme = "README.rst"
license = { text = "Apache License 2.0" }
keywords = ["Python", "Interactive", "Web", "Application", "Framework"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
app = ["pywebview"]
jupyter = ["jupyterlab"]
dev = ["pre-commit", "ruff", "pytest"]
[build-system]
requires = ['setuptools', 'wheel']
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
build_command = """
python -m venv .venv
source .venv/bin/activate
pip install -U pip build
python -m build .
"""
[semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F"]
ignore = []
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
# This only has an effect when the `docstring-code-format` setting is
# enabled.
docstring-code-line-length = "dynamic"
[tool.ruff.lint.pycodestyle]
max-line-length = 120
[lint.pydocstyle]
convention = "google"
|