Files
galaxy/packages/test_api/pyproject.toml
T
Nicola Soranzo c329529e51 Packages: finish migration from `setup.cfg to pyproject.toml`
Also:
- Drop now unnecessary ``packages/sync_pyprojects.py`` script.
2026-06-08 08:58:40 +01:00

59 lines
1.4 KiB
TOML

[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0.0", "setuptools-scm>=8"]
[project]
dynamic = ["readme"]
name = "galaxy-test-api"
version = "26.1.dev0"
description = "Galaxy API tests"
requires-python = ">=3.10"
license = "MIT"
license-files = [
"LICENSE",
]
authors = [
{name = "Galaxy Project and Community", email = "galaxy-committers@lists.galaxyproject.org"},
]
dependencies = [
"galaxy-test-base",
"pytest",
"python-dateutil",
"requests",
"tuspy",
]
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.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]
driver = [
"galaxy-test-driver",
]
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"]