-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.32 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4", "future"]
build-backend = "flit_core.buildapi"
[project]
name = "eegvis"
authors = [{name = "Chris Lee-Messer", email = "[email protected]"}]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Development Status :: 4 - Beta"
]
dynamic = ["version", "description"] # this means will be extracted from module docstring
dependencies = [
"numpy",
"xarray",
"scipy", # signal processing sections
"eegml-signal@git+https://github.com/eegml/eegml-signal.git@master", # need literal toml string
#'git+https://github.com/eegml/eegml-signal.git', # pip versionneed literal toml string
"matplotlib>=3.2", # requried for this backend, prob works with matplotlib 2.x, 3.x
"bokeh>=0.12.16", # required for bokeh backend
"ipywidgets>=7.0",
"panel", # needed for more elaborate ui/web dashboard
]
# may want to break this out into different backends
# development include black and pytest
# matplotlib specific
# bokeh specific
[project.optional-dependencies]
eeghdf = ["eeghdf"]
pyedflib = ["pyedflib<=0.1.22"] # sample_frequency is wrong after this will be fixed
[project.urls]
Home = "https://github.com/eegml/eegvis"