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 11from setuptools import setup , find_packages
22from os import path
33
4- pkg_name = 'element_array_ephys '
4+ pkg_name = 'element-array-ephys '
55here = path .abspath (path .dirname (__file__ ))
66
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 ()
109
1110with open (path .join (here , 'requirements.txt' )) as f :
1211 requirements = f .read ().splitlines ()
1312
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 :
1514 exec (f .read ())
1615
1716setup (
18- name = 'element-array-ephys' ,
17+ name = pkg_name ,
1918 version = __version__ ,
2019 description = "DataJoint Element for Extracellular Array Electrophysiology" ,
2120 long_description = long_description ,
You can’t perform that action at this time.
0 commit comments