-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 886 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
37
38
39
40
41
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "bimana"
description = "Package for performing automated bio-image analysis tasks."
readme = "README.md"
authors = [
{name = "Alphons Gwatimba"},
{email = "[email protected]"}
]
requires-python = ">=3.10"
license = {file = "LICENSE"}
version = "0.1.0"
dependencies = [
"natsort",
"click-web",
"scipy",
"opencv-python",
"pandas<2.0.0",
"pyvips",
"matplotlib",
"kornia",
'xlsxwriter',
'openpyxl',
]
[project.urls]
homepage = "https://github.com/AlphonsG/BIMANA"
documentation = "https://github.com/AlphonsG/BIMANA"
repository = "https://github.com/AlphonsG/BIMANA"
[project.optional-dependencies]
test = ['pytest', 'pytest-cov', 'flake8']
[project.scripts]
bimana = "bimana.__main__:main"
[tool.setuptools]
packages = ["bimana"]