test/first (#8)
Introducing first very simple tests for tools.py Reviewed-on: https://www.kuhl-mann.de/git/git/jkuhl/corrlib/pulls/8
This commit is contained in:
parent
acab85df82
commit
d70e8d32ce
9 changed files with 1650 additions and 11 deletions
|
|
@ -1,6 +1,36 @@
|
|||
[build-system]
|
||||
requires = ["setuptools >= 63.0.0", "wheel"]
|
||||
requires = ["setuptools >= 63.0.0", "wheel", "setuptools-scm"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
requires-python = ">=3.10"
|
||||
name = "corrlib"
|
||||
dynamic = ["version"]
|
||||
dependencies = [
|
||||
"gitpython>=3.1.45",
|
||||
'pyerrors>=2.11.1',
|
||||
'datalad>=1.1.0',
|
||||
'typer>=0.12.5'
|
||||
]
|
||||
description = "Python correlation library"
|
||||
authors = [
|
||||
{ name = 'Justus Kuhlmann', email = 'j_kuhl19@uni-muenster.de'}
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
pcl = "corrlib.cli:app"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
include = ["corrlib", "corrlib.*"]
|
||||
|
||||
[tool.setuptools_scm]
|
||||
write_to = "corrlib/version.py"
|
||||
|
||||
[tool.ruff.lint]
|
||||
ignore = ["F403"]
|
||||
ignore = ["F403"]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pytest>=9.0.1",
|
||||
"pytest-pretty>=1.3.0",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue