Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__pycache__/
*.log
/venv
snirf2bids/__version__.py
43 changes: 43 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[build-system]
requires = ["setuptools>=69", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "snirf2bids"
dynamic=["version"]
description = "To convert snirf file to bids format."
readme = "README.md"
requires-python = ">=3.6"
authors = [
{name="Sreekanth Kura", email="[email protected]"},
{name="Christian Arthur" },
{name="Jeonghoon Choi"},
{name="Jiazhen Liu"},
{name="Juncheng Zhang"}
]
license = "MIT"
urls = { Homepage = "https://github.com/BUNPC/snirf2bids" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]


dependencies = [
"numpy",
"setuptools",
"snirf",
"importlib_resources"
]

[tool.setuptools_scm]
version_file = "snirf2bids/__version__.py"

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
exclude = ["tests", "*.tests", "*.tests.*", "tests.*"]
137 changes: 0 additions & 137 deletions setup.py

This file was deleted.

3 changes: 0 additions & 3 deletions snirf2bids/__version__.py

This file was deleted.