-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
authors = [{name = "Richard M. Köhler"}]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "A package for loading XDF files recorded with TMSi amplifiers."
dynamic = ["version"]
keywords = ["xdf", "tmsi", "eeg", "ieeg"]
license = {file = "LICENSE"}
maintainers = [{name = "Richard M. Köhler"}]
name = "pte-xdf"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
dependencies = ["mne", "numpy", "pyxdf"]
[project.optional-dependencies]
dev = ["black", "isort", "mypy", "pylint", "pytest", "pytest-cov", "tox"]
doc = ["mkdocs", "mkdocs-autorefs", "mkdocs-material", "mkdocstrings[python]"]
full = ["pte-xdf[dev,doc,release]"]
release = ["pip-tools"]
[tool.flit.module]
name = "pte_xdf"
[project.urls]
bugtracker = "https://github.com/richardkoehler/pte-xdf/issues"
changelog = "https://github.com/richardkoehler/pte-xdf/blob/main/docs/CHANGELOG.md"
repository = "https://github.com/richardkoehler/pte-xdf"
[tool.black]
exclude = '''
/(
__pycache__
)/
'''
include = '''
(
/src/
# | /tests
)
'''
line-length = 79
target-version = ['py310']
[tool.isort]
line_length = 79
profile = "black"
py_version = 310
src_paths = ["pte_xdf"]
[tool.mypy]
python_version = "3.10"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["mne", "pyxdf"]