Skip to content

Commit

Permalink
Update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
rly committed Oct 21, 2023
1 parent c71a338 commit 043739d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 17 deletions.
28 changes: 14 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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 = [
Expand All @@ -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 = [
Expand Down
14 changes: 11 additions & 3 deletions src/spec/create_extension_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, """[email protected], [email protected], [email protected]""".split(","))),
doc="""NWB extension for HED data""",
author=[
"Ryan Ly",
"Oliver Ruebel",
"Kay Robbins",
],
contact=[
"[email protected]",
"[email protected]",
"[email protected]"
],
)

# TODO: specify either the neurodata types that are used by the extension
Expand Down

0 comments on commit 043739d

Please sign in to comment.