mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-31 01:02:04 +08:00
Move classifiers and keywords from setup.cfg to pyproject.toml
When a [project] table is present in pyproject.toml, setuptools ignores fields in setup.cfg unless they are listed in the dynamic array. This applies to classifiers and keywords: the build was silently dropping them from the wheel metadata. Fix: define classifiers and keywords as static values directly in the [project] section of each package's pyproject.toml, and remove them from setup.cfg. Alternate fix: add both to the dynamic list, keeping the definitions in setup.cfg. However, I think the first is better since that keeps pyproject.toml as the single source of truth.
This commit is contained in:
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-app"
|
||||
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.scripts]
|
||||
galaxy-main = "galaxy.main:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy application (backend)
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-auth"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy auth framework and implementations
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-config"
|
||||
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.scripts]
|
||||
galaxy-config = "galaxy.config.script:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy configuration
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-data"
|
||||
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.scripts]
|
||||
galaxy-build-objects = "galaxy.model.store.build_objects:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy datatype framework and datatypes
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-files"
|
||||
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.scripts]
|
||||
galaxy-file-sources-conf-validation = "galaxy.files.validate.script:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy file source framework and default plugins
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-job-execution"
|
||||
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.scripts]
|
||||
galaxy-set-metadata = "galaxy.metadata.set_metadata:set_metadata"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy job execution runtime utilities
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,22 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-job-metrics"
|
||||
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"]
|
||||
|
||||
@@ -1,26 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy job metrics
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,22 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: Science/Research",
|
||||
"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 :: Scientific/Engineering :: Bio-Informatics",
|
||||
"Topic :: Software Development",
|
||||
"Topic :: Software Development :: Code Generators",
|
||||
"Topic :: Software Development :: Testing",
|
||||
]
|
||||
keywords = ["Galaxy"]
|
||||
|
||||
@@ -1,26 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
classifiers =
|
||||
Development Status :: 5 - Production/Stable
|
||||
Environment :: Console
|
||||
Intended Audience :: Developers
|
||||
Intended Audience :: Science/Research
|
||||
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 :: Scientific/Engineering :: Bio-Informatics
|
||||
Topic :: Software Development
|
||||
Topic :: Software Development :: Code Generators
|
||||
Topic :: Software Development :: Testing
|
||||
description = Galaxy server metapackage
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-navigation"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy client DOM navigation framework
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,22 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-objectstore"
|
||||
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"]
|
||||
|
||||
@@ -1,26 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy objectstore framework and plugins
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-schema"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Pydantic models for Galaxy
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-selenium"
|
||||
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.scripts]
|
||||
gx-dump-tour = "galaxy.selenium.scripts.dump_tour:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy Selenium interaction framework
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-test-api"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy API tests
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-test-base"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy testing utilities
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-test-driver"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy test driver
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-test-selenium"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy Selenium tests
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-tool-shed"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy Tool Shed
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-tool-shed-schema"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Pydantic models for the Galaxy Tool Shed
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,25 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-tool-util"
|
||||
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.scripts]
|
||||
galaxy-tool-test = "galaxy.tool_util.verify.script:main"
|
||||
|
||||
@@ -1,26 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy tool and tool dependency utilities
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,22 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-tool-util-models"
|
||||
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"]
|
||||
|
||||
@@ -1,26 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Pydantic models for Galaxy tools
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-tours"
|
||||
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.scripts]
|
||||
gx-validate-tours = "galaxy.tours.validate:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy tours backend framework
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,22 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-util"
|
||||
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"]
|
||||
|
||||
@@ -1,26 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy generic utilities
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-web-apps"
|
||||
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.scripts]
|
||||
galaxy-web = "galaxy.webapps.galaxy.script:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy web apps
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,6 +14,23 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-web-client"
|
||||
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.scripts]
|
||||
galaxy-web-client-install = "galaxy.web_client.install:main"
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy web client (frontend)
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-web-framework"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy web framework
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
@@ -14,3 +14,20 @@ dynamic = [
|
||||
"version",
|
||||
]
|
||||
name = "galaxy-web-stack"
|
||||
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"]
|
||||
|
||||
@@ -1,24 +1,7 @@
|
||||
[metadata]
|
||||
author = Galaxy Project and Community
|
||||
author_email = galaxy-committers@lists.galaxyproject.org
|
||||
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
|
||||
description = Galaxy web stack abstraction
|
||||
keywords =
|
||||
Galaxy
|
||||
license = MIT
|
||||
license_files =
|
||||
LICENSE
|
||||
|
||||
Reference in New Issue
Block a user