|
1 | 1 | [build-system]
|
2 |
| -requires = ["setuptools"] |
3 | 2 | build-backend = "setuptools.build_meta"
|
| 3 | +requires = ["setuptools"] |
4 | 4 |
|
5 | 5 | [project]
|
6 |
| -name = "pybv" |
7 | 6 | authors = [
|
8 |
| - {name = "pybv developers"}, |
| 7 | + {name = "pybv developers"}, |
9 | 8 | ]
|
10 |
| -maintainers = [ |
11 |
| - { name = "Stefan Appelhoff", email = "[email protected]"}, |
| 9 | +classifiers = [ |
| 10 | + "Intended Audience :: Developers", |
| 11 | + "Intended Audience :: Science/Research", |
| 12 | + "License :: OSI Approved", |
| 13 | + "Operating System :: MacOS", |
| 14 | + "Operating System :: Microsoft :: Windows", |
| 15 | + "Operating System :: POSIX :: Linux", |
| 16 | + "Programming Language :: Python :: 3.10", |
| 17 | + "Programming Language :: Python :: 3.11", |
| 18 | + "Programming Language :: Python :: 3.12", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Topic :: Scientific/Engineering", |
| 22 | + "Topic :: Scientific/Engineering", |
| 23 | + "Topic :: Software Development", |
12 | 24 | ]
|
13 |
| -description = "pybv – a lightweight I/O utility for the BrainVision data format" |
14 |
| -keywords = ["Brain Products", "BrainVision", "vhdr", "vmrk", "eeg"] |
15 |
| -readme = "README.rst" |
16 |
| -license = {file = "LICENSE"} |
17 |
| -requires-python = ">=3.8" |
18 | 25 | dependencies = [
|
19 |
| - "numpy >= 1.18.1", |
| 26 | + "numpy >= 1.18.1", |
20 | 27 | ]
|
| 28 | +description = "pybv - a lightweight I/O utility for the BrainVision data format" |
21 | 29 | dynamic = ["version"]
|
22 |
| -classifiers = [ |
23 |
| - "Topic :: Scientific/Engineering", |
24 |
| - "Intended Audience :: Science/Research", |
25 |
| - "Intended Audience :: Developers", |
26 |
| - "License :: OSI Approved", |
27 |
| - "Topic :: Software Development", |
28 |
| - "Topic :: Scientific/Engineering", |
29 |
| - "Operating System :: Microsoft :: Windows", |
30 |
| - "Operating System :: POSIX :: Linux", |
31 |
| - "Operating System :: MacOS", |
32 |
| - "Programming Language :: Python", |
33 |
| - "Programming Language :: Python :: 3.8", |
34 |
| - "Programming Language :: Python :: 3.9", |
35 |
| - "Programming Language :: Python :: 3.10", |
36 |
| - "Programming Language :: Python :: 3.11", |
37 |
| - "Programming Language :: Python :: 3.12", |
| 30 | +keywords = ["Brain Products", "BrainVision", "eeg", "vhdr", "vmrk"] |
| 31 | +license = {file = "LICENSE"} |
| 32 | +maintainers = [ |
| 33 | + { email = "[email protected]", name = "Stefan Appelhoff"}, |
38 | 34 | ]
|
| 35 | +name = "pybv" |
| 36 | +readme = "README.rst" |
| 37 | +requires-python = ">=3.9" |
39 | 38 |
|
40 | 39 | [project.optional-dependencies]
|
41 | 40 | dev = [
|
42 |
| - "check-manifest", |
43 |
| - "mne", |
44 |
| - "numpydoc", |
45 |
| - "pre-commit", |
46 |
| - "pytest", |
47 |
| - "pytest-cov", |
48 |
| - "pytest-sugar", |
49 |
| - "ruff", |
50 |
| - "sphinx", |
51 |
| - "sphinx-copybutton", |
| 41 | + "check-manifest", |
| 42 | + "intersphinx_registry", |
| 43 | + "mne", |
| 44 | + "numpydoc", |
| 45 | + "pre-commit", |
| 46 | + "pytest", |
| 47 | + "pytest-cov", |
| 48 | + "pytest-sugar", |
| 49 | + "ruff", |
| 50 | + "sphinx", |
| 51 | + "sphinx-copybutton", |
52 | 52 | ]
|
53 | 53 |
|
54 | 54 | [project.urls]
|
55 | 55 | Documentation = "https://pybv.readthedocs.io"
|
56 |
| -Repository = "https://github.com/bids-standard/pybv" |
57 | 56 | Issues = "https://github.com/bids-standard/pybv/issues"
|
| 57 | +Repository = "https://github.com/bids-standard/pybv" |
58 | 58 |
|
59 | 59 | [tool.ruff.lint]
|
60 |
| -select = ["A", "B006", "D", "E", "F", "I", "W", "UP"] |
61 | 60 | ignore = ["D203", "D213"]
|
| 61 | +select = ["A", "B006", "D", "E", "F", "I", "UP", "W"] |
62 | 62 |
|
63 | 63 | [tool.setuptools.dynamic]
|
64 | 64 | version = {attr = "pybv.__version__"}
|
65 | 65 |
|
66 | 66 | [tool.setuptools.packages.find]
|
67 | 67 | exclude = ["docs", "specification"]
|
| 68 | + |
| 69 | +[tool.tomlsort] |
| 70 | +all = true |
| 71 | +ignore_case = true |
| 72 | +spaces_before_inline_comment = 2 |
| 73 | +trailing_comma_inline_array = true |
0 commit comments