Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump up version #21

Merged
merged 2 commits into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ def open_requirements(fname):

install_requires = open_requirements('requirements.txt')

d = {}
exec(open("src/pynwb/ndx_probeinterface/version.py").read(), None, d)
version = d['version']

setup_args = {
'name': 'ndx-probeinterface',
'version': '0.1.0',
'version': version,
'description': 'Extension for defining neural probes in the probeinterface format',
'long_description': readme,
'long_description_content_type': readme_type,
'author': 'Alessio Buccino',
'author': 'Alessio Buccino, Kyu Hyun Lee, Geeling Chau',
'author_email': '[email protected]',
'url': '',
'license': 'MIT',
Expand Down
2 changes: 2 additions & 0 deletions src/pynwb/ndx_probeinterface/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os
from pynwb import load_namespaces, get_class

from .version import version as __version__

# Set path of the namespace.yaml file to the expected install location
ndx_probeinterface_specpath = os.path.join(os.path.dirname(__file__), "spec", "ndx-probeinterface.namespace.yaml")

Expand Down
1 change: 1 addition & 0 deletions src/pynwb/ndx_probeinterface/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = "0.1.0"