-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (39 loc) · 1.21 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
[project]
name = "wsp-matrix-butler"
dynamic = ["version"]
authors = [
{ name = "Brian Cheung", email = "[email protected]"}
]
description = "A SQLite-based mini-file system for organizing binary files for the Greater Golden Horseshoe Model"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dependencies = [
'pandas>=0.24',
'numpy>=1.21'
]
requires-python = ">= 3.7"
[project.urls]
Homepage = "https://github.com/wsp-sag/wsp-matrix-butler"
Issues = "https://github.com/wsp-sag/wsp-matrix-butler/issues"
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = ["build>=1.2.2.post1,<2", "twine>=6.0.1,<7"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_file = "src/wsp_matrix_butler/_version.py"
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
[tool.pixi.pypi-dependencies]
wsp_matrix_butler = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.environments]
dev = ["dev"]