-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve metadata about this software project
- Loading branch information
Showing
1 changed file
with
15 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,29 +4,30 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "cwl-upgrader" | ||
authors = [{name = "Common Workflow Language contributors", email = "[email protected]"}] | ||
authors = [{name = "Common Workflow Language project contributors", email = "[email protected]"}] | ||
license = {text = "Apache 2.0"} | ||
description = "Common Workflow Language standalone document upgrader" | ||
keywords = ["cwl", "commonwl", "common-workflow-language"] | ||
description = "Upgrade a CWL tool or workflow document from one version to another" | ||
readme = "README.rst" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Healthcare Industry", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Programming Language :: Python", | ||
"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", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Topic :: File Formats", | ||
"Topic :: Software Development :: Libraries", | ||
"Typing :: Typed", | ||
] | ||
requires-python = ">=3.8, <4" | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"setuptools", | ||
"ruamel.yaml >= 0.16.0, < 0.19", | ||
|
@@ -35,14 +36,17 @@ dependencies = [ | |
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/common-workflow-language/cwl-upgrader" | ||
Download = "https://github.com/common-workflow-language/cwl-upgrader" | ||
Homepage = "https://www.commonwl.org" | ||
Repository = "https://github.com/common-workflow-language/cwl-upgrader" | ||
Issues = "https://github.com/common-workflow-language/cwl-upgrader/issues" | ||
Changelog = "https://github.com/common-workflow-language/cwl-upgrader/releases" | ||
"Related Tools" = "https://www.commonwl.org/tools/" | ||
|
||
[project.scripts] | ||
cwl-upgrader = "cwlupgrader.main:main" | ||
|
||
[project.optional-dependencies] | ||
testing = ["pytest < 7.5.0"] | ||
testing = ["pytest < 8"] | ||
|
||
[tool.aliases] | ||
test = "pytest" | ||
|