-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
52 lines (48 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tglow-core"
version = "0.1.2"
description = "Python library and runners for tglow pipeline, interfacing with plate/row/col/field.ome.tiff images and Revity Opera Phenix and Operetta exports"
readme = "README.md"
requires-python = ">=3.9, <4"
license = { text = "MIT" }
authors = [{ name = "Trynka Lab" }]
keywords = ["bioinformatics", "tglow"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
# Copy dependency lines from lib/requirements.txt into the dependencies array below
dependencies = [
"aicsimageio>=4.14.0",
"numpy>=1.26.4",
"ome_model>=6.3.6",
"scipy<1.13",
"scikit-image>=0.20.0",
"pandas",
"tqdm",
"psutil",
"basicpy==1.2.0",
"hyperactive==4.6.0",
"gradient-free-optimizers==1.3.0",
"matplotlib",
"opencv-python>=4.6.0",
"filelock"
]
[project.urls]
Homepage = "https://github.com/TrynkaLab/tglow-core"
Repository = "https://github.com/TrynkaLab/tglow-core.git"
Issues = "https://github.com/TrynkaLab/tglow-core/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["tglow*"]
exclude = ["tests", "docs"]