-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.25 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
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0", "wheel", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "hedfpy"
version = "0.0.dev3" # Replace this with the value dynamically loaded by `get_version`
description = "convert SR Research eyelink edf output to tabular hdf5 format"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "Tomas Knapen", email = "[email protected]" }]
maintainers = [{ name = "Tomas Knapen", email = "[email protected]" }]
keywords = ["seaborn", "visualization", "neuroimaging", "plotting"]
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
]
# requires-python = ">=3.7, <3.11"
dependencies = [
"matplotlib",
"pandas",
"numpy",
"lmfit",
"statsmodels",
"scikit-learn",
"ipython",
"mne",
"tables",
"h5py",
]
[project.optional-dependencies]
dev = ["pytest", "black", "flake8"]
[tool.setuptools]
packages = ["hedfpy"]
package-data = { hedfpy = ['test/*.ipynb', 'test/*.edf'] }