forked from uwmadison-chm/bioread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (50 loc) · 1.35 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[metadata]
name = bioread
url = https://github.com/uwmadison-chm/bioread
download_url = https://github.com/uwmadison-chm/bioread/releases
author = Nate Vack
author_email = [email protected]
maintainer = Nate Vack
maintainer_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License (GPL)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering :: Information Analysis
license = GPL 2.0
description = Utilities to read BIOPAC AcqKnowledge files
long_description = file:README.md
long_description_content_type = text/markdown; charset=UTF-8
platforms = OS Independent
provides =
bioread
[options]
install_requires =
numpy
docopt >= 0.6.1
zip_safe = False
packages = find:
include_package_data = True
[options.extras_require]
mat =
scipy
hdf5 =
h5py
all =
%(mat)s
%(hdf5)s
[options.package_data]
abagen =
test/data/*
[options.entry_points]
console_scripts =
acq2mat=bioread.runners.acq2mat:main
acq2txt=bioread.runners.acq2txt:main
acq_info=bioread.runners.acq_info:main
acq_markers=bioread.runners.acq_markers:main
acq2hdf5=bioread.runners.acq2hdf5:main