File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
from os import path
3
3
4
- pkg_name = 'element_array_ephys '
4
+ pkg_name = 'element-array-ephys '
5
5
here = path .abspath (path .dirname (__file__ ))
6
6
7
- long_description = """"
8
- DataJoint Element for Extracellular Array Electrophysiology with Neuropixels probe
9
- """
7
+ with open (path .join (here , 'README.md' ), 'r' ) as f :
8
+ long_description = f .read ()
10
9
11
10
with open (path .join (here , 'requirements.txt' )) as f :
12
11
requirements = f .read ().splitlines ()
13
12
14
- with open (path .join (here , pkg_name , 'version.py' )) as f :
13
+ with open (path .join (here , pkg_name . replace ( '-' , '_' ) , 'version.py' )) as f :
15
14
exec (f .read ())
16
15
17
16
setup (
18
- name = 'element-array-ephys' ,
17
+ name = pkg_name ,
19
18
version = __version__ ,
20
19
description = "DataJoint Element for Extracellular Array Electrophysiology" ,
21
20
long_description = long_description ,
You can’t perform that action at this time.
0 commit comments