mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 05:45:37 +08:00
52 lines
1.4 KiB
TOML
52 lines
1.4 KiB
TOML
[build-system]
|
|
build-backend = "setuptools.build_meta"
|
|
requires = ["setuptools", "setuptools-scm>=8"]
|
|
|
|
[project]
|
|
dynamic = ["readme"]
|
|
name = "galaxy-tool-util-models"
|
|
version = "26.1.dev0"
|
|
description = "Pydantic models for Galaxy tools"
|
|
requires-python = ">=3.8"
|
|
license = {"text" = "MIT"}
|
|
authors = [
|
|
{name = "Galaxy Project and Community", email = "galaxy-committers@lists.galaxyproject.org"},
|
|
]
|
|
dependencies = [
|
|
"pydantic>=2.7.4",
|
|
"typing-extensions",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"Natural Language :: English",
|
|
"Operating System :: POSIX",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"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",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Topic :: Software Development",
|
|
"Topic :: Software Development :: Code Generators",
|
|
"Topic :: Software Development :: Testing",
|
|
]
|
|
keywords = ["Galaxy"]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/galaxyproject/galaxy"
|
|
|
|
[tool.setuptools.dynamic]
|
|
readme = {content-type = "text/x-rst", file = ["README.rst", "HISTORY.rst"]}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|