We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
version.py
1 parent ea1547f commit 4185ba3Copy full SHA for 4185ba3
element_array_ephys/version.py
@@ -0,0 +1,2 @@
1
+"""Package metadata."""
2
+__version__ = '0.1.1'
setup.py
@@ -1,6 +1,7 @@
from setuptools import setup, find_packages
from os import path
3
4
+pkg_name = 'element_array_ephys'
5
here = path.abspath(path.dirname(__file__))
6
7
long_description = """"
@@ -10,9 +11,12 @@
10
11
with open(path.join(here, 'requirements.txt')) as f:
12
requirements = f.read().splitlines()
13
14
+with open(path.join(here, pkg_name, 'version.py')) as f:
15
+ exec(f.read())
16
+
17
setup(
18
name='element-array-ephys',
- version='0.0.1',
19
+ version=__version__,
20
description="DataJoint Element for Extracellular Array Electrophysiology",
21
long_description=long_description,
22
author='DataJoint NEURO',
0 commit comments