mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-01 15:37:32 +08:00
c329529e51
Also: - Drop now unnecessary ``packages/sync_pyprojects.py`` script.
59 lines
1.4 KiB
TOML
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"]
|