-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
36 lines (29 loc) · 975 Bytes
/
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
[project]
name = "voluseg"
version = '0.1.0'
dynamic = ["dependencies"]
description = "Pipeline for volumetric segmentation of calcium imaging data."
authors = [{ name = "Mika Rubinov", email = "mika.rubinov@vanderbilt.edu" }]
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["voluseg", "volumetric segmentation", "calcium imaging"]
[project.urls]
homepage = "https://github.com/mikarubi/voluseg"
repository = "https://github.com/mikarubi/voluseg"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
[tool.pytest.ini_options]
pythonpath = [".", "src"]
testpaths = ["tests"]
[project.optional-dependencies]
pyspark = ["pyspark==3.4.0"]
aws = ["boto3<1.35.0,>=1.34.70", "botocore<1.35.0,>=1.34.70"]
# dask = ["dask==2024.9.0"]