-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.49 KB
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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
write_to = "hipsnp/_version.py"
write_to_template = "__version__ = '{version}'\n"
[project]
name = "hipsnp"
description = "JUelich NeuroImaging FEature extractoR"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "AGPL-3.0-only"}
authors = [
{ name = "Fede Raimondo", email = "f.raimondo@fz-juelich.de" },
{ name = "Kaustubh Patil", email = "k.patil@fz-juelich.de" },
]
maintainers = [
{ name = "Fede Raimondo", email = "f.raimondo@fz-juelich.de" },
{ name = "Kaustubh Patil", email = "k.patil@fz-juelich.de" },
]
keywords = [
"snp",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
]
dependencies = [
"datalad>=1.0.0,<1.2.0",
"pandas>=2.0.0,<2.3.0",
"numpy>=1.24.0,<1.26.0",
"bgen_reader>=4.0.8",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://juaml.github.io/hipsnp"
Homepage = "https://juaml.github.io/hipsnp"
Source = "https://github.com/juaml/hipsnp"