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.
55 lines
1.4 KiB
TOML
55 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-web-stack"
|
|
version = "26.1.dev0"
|
|
description = "Galaxy web stack abstraction"
|
|
requires-python = ">=3.10"
|
|
license = "MIT"
|
|
license-files = [
|
|
"LICENSE",
|
|
]
|
|
authors = [
|
|
{name = "Galaxy Project and Community", email = "galaxy-committers@lists.galaxyproject.org"},
|
|
]
|
|
dependencies = [
|
|
"galaxy-data",
|
|
"galaxy-util",
|
|
"SQLAlchemy>=2.0.37,<2.1,!=2.0.41",
|
|
]
|
|
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]
|
|
test = [
|
|
"pytest",
|
|
"gunicorn!=25.1.0",
|
|
]
|
|
|
|
[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"]
|