-
In a terminal, change directory into the new ndx-franklab-novela directory.
-
Add any packages required by your extension to
requirements.txt
andsetup.py
. -
Run
python -m pip install -r requirements.txt
to install thepynwb
package and any other packages required by your extension. -
Modify
src/create_extension_spec.py
to define your extension.- If you want to create any custom classes for interacting with the extension,
add them to the
src/pynwb
.- If present, the
src/pynwb
folder MUST contain the following:ndx-franklab-novela
- Folder with the sources of the NWB extensionndx-franklab-novela/__init__.py
- Python file that may be empty
- If present, the
src/pynwb
folder MAY contain the following files/folders:test
- Folder for unit tests for the extensionsjupyter_widgets
- Optional package with custom widgets for use with Jupyter
- If present, the
- If you want to create any custom classes for interacting with the extension,
add them to the
-
Run
python src/spec/create_extension_spec.py
to generate thespec/ndx-franklab-novela.namespace.yaml
andspec/ndx-franklab-novela.extensions.yaml
files. -
You may need to modify
setup.py
and re-runpython setup.py install
if you use any dependencies.
-
Install the latest release of hdmf_docutils:
python -m pip install hdmf-docutils
-
Start a git repository for your extension directory ndx-franklab-novela and push it to GitHub. You will need a GitHub account.
- Follow these directions: https://help.github.com/en/articles/adding-an-existing-project-to-github-using-the-command-line
-
Change directory into
docs
. -
Run
make html
to generate documentation for your extension based on the YAML files. -
Read
docs/README.md
for instructions on how to customize documentation for your extension. -
Modify
README.md
to describe this extension for interested developers. -
Add a license file. Permissive licenses should be used if possible. A BSD license is recommended.
-
Make a release for the extension on GitHub with the version number specified. e.g. if version is 0.1.0, then this page should exist: https://github.com/NovelaDevops/ndx-franklab-novela/releases/tag/0.1.0 . For instructions on how to make a release on GitHub see here.
-
Publish your updated extension on PyPi.
- Follow these directions: https://packaging.python.org/tutorials/packaging-projects/
- You may need to modify
setup.py
- If your extension version is 0.1.0, then this page should exist: https://pypi.org/project/ndx-franklab-novela/0.1.0
Once your GitHub release and
setup.py
are ready, publishing on PyPi:python setup.py sdist bdist_wheel twine upload dist/*
-
Go to https://github.com/nwb-extensions/staged-extensions and fork the repository.
-
Clone the fork onto your local filesystem.
-
Copy the directory
staged-extensions/example
to a new directorystaged-extensions/ndx-franklab-novela
:cp -r staged-extensions/example staged-extensions/ndx-franklab-novela
-
Edit
staged-extensions/ndx-franklab-novela/ndx-meta.yaml
with information on where to find your NWB extension.- The YAML file MUST contain a dict with the following keys:
- name: extension namespace name
- version: extension version
- src: URL for the main page of the public repository (e.g. on GitHub, BitBucket, GitLab) that contains the sources of the extension
- pip: URL for the main page of the extension on PyPI
- license: name of the license of the extension
- maintainers: list of GitHub usernames of those who will reliably maintain the extension
- The YAML file MUST contain a dict with the following keys:
You may copy and modify the following YAML that was auto-generated:
name: ndx-franklab-novela
version: 0.0.5
src: https://github.com/NovelaDevops/ndx-franklab-novela
pip: https://pypi.org/project/ndx-franklab-novela/
license: BSD 3-Clause
maintainers:
- NovelaDevops
- Edit
staged-extensions/ndx-franklab-novela/README.md
to add information about your extension. You may copy it fromndx-franklab-novela/README.md
.
cp ndx-franklab-novela/README.md staged-extensions/ndx-franklab-novela/README.md
- Add and commit your changes to Git and push your changes to GitHub.
cd staged-extensions
git add ndx-franklab-novela
git commit -m "Add new catalog entry for ndx-franklab-novela" .
git push
-
Open a pull request. Building of your extension will be tested on Windows, Mac, and Linux. The technical team will review your extension shortly after and provide feedback and request changes, if any.
-
When your pull request is merged, a new repository, called ndx-franklab-novela-feedstock will be created in the nwb-extensions GitHub organization and you will be added as a maintainer for that repository.
-
Update your ndx-franklab-novela GitHub repository.
-
Publish your updated extension on PyPi.
-
Fork the ndx-franklab-novela-feedstock repository on GitHub.
-
Open a pull request to test the changes automatically. The technical team will review your changes shortly after and provide feedback and request changes, if any.
-
Your updated extension is approved.