From 043739d2e92398c245b7ef47de74d6013a87332c Mon Sep 17 00:00:00 2001 From: rly Date: Sat, 21 Oct 2023 12:19:03 -0700 Subject: [PATCH] Update metadata --- pyproject.toml | 28 ++++++++++++++-------------- src/spec/create_extension_spec.py | 14 +++++++++++--- 2 files changed, 25 insertions(+), 17 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f01dddb..88be953 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,17 +12,17 @@ authors = [ ] description = "NWB extension for HED data" readme = "README.md" -# requires-python = ">=3.8" +requires-python = ">=3.8" license = {text = "BSD-3"} classifiers = [ # TODO: add classifiers before release - # "Programming Language :: Python", - # "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", - # "Development Status :: 4 - Beta", + "Programming Language :: Python", + "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", + "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", @@ -38,12 +38,12 @@ dependencies = [ ] # TODO: add URLs before release -# [project.urls] -# "Homepage" = "https://github.com/organization/package" +[project.urls] +"Homepage" = "https://github.com/hed-standard/ndx-hed" # "Documentation" = "https://package.readthedocs.io/" -# "Bug Tracker" = "https://github.com/organization/package/issues" -# "Discussions" = "https://github.com/organization/package/discussions" -# "Changelog" = "https://package.readthedocs.io/en/latest/changelog.html" +"Bug Tracker" = "https://github.com/hed-standard/ndx-hed/issues" +"Discussions" = "https://github.com/hed-standard/ndx-hed/discussions" +"Changelog" = "https://github.com/hed-standard/ndx-hed/CHANGELOG.md" [tool.hatch.build] include = [ @@ -62,7 +62,7 @@ packages = [ ] [tool.hatch.build.targets.wheel.sources] -"spec" = "ndx_my_namespace/spec" +"spec" = "ndx_hed/spec" [tool.hatch.build.targets.sdist] include = [ diff --git a/src/spec/create_extension_spec.py b/src/spec/create_extension_spec.py index 49831b0..4519490 100644 --- a/src/spec/create_extension_spec.py +++ b/src/spec/create_extension_spec.py @@ -10,11 +10,19 @@ def main(): # these arguments were auto-generated from your cookiecutter inputs ns_builder = NWBNamespaceBuilder( - doc="""NWB extension for HED data""", name="""ndx-hed""", version="""0.1.0""", - author=list(map(str.strip, """Ryan Ly, Oliver Ruebel, Kay Robbins""".split(","))), - contact=list(map(str.strip, """rly@lbl.gov, oruebel@lbl.gov, kay.robbins@utsa.edu""".split(","))), + doc="""NWB extension for HED data""", + author=[ + "Ryan Ly", + "Oliver Ruebel", + "Kay Robbins", + ], + contact=[ + "rly@lbl.gov", + "oruebel@lbl.gov", + "kay.robbins@utsa.edu" + ], ) # TODO: specify either the neurodata types that are used by the extension