-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "morphomapping"
version = "0.0.8"
authors = [
{ name="Amelie Bauerdick", email="Amelie.Bauerdick@stud.uni-heidelberg.de" },
]
description = "Analyze ImageStream Data"
readme = "README.md"
requires-python = ">=3.9"
repository = "http://github.com/Wguido/MorphoMapping/"
keywords = ["analysis", "cytometry", "imaging flow cytometry"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"flowkit",
"matplotlib",
"scikit-learn",
"umap-learn",
"hdbscan", # TODO Check if ambiguous with sklearn implementation.
"bokeh",
"openpyxl",
"adjustText"
]
[project.optional-dependencies]
docs = [
"sphinx<=7.4",
"sphinx-book-theme>=1.0.0",
"sphinxcontrib-bibtex>=1.0.0",
"sphinx-autodoc-typehints",
"nbsphinx",
"nbsphinx-link",
"pandoc",
"myst_parser",
"docutils<=0.20",
"ipython"
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
exclude = [
"_resources/**"
]
# [tool.hatch.build.targets.wheel]
# packages = ["morphomapping/morphomapping"]
# exclude = ["_resources/raw_data/*"]
[project.urls]
"Homepage" = "http://github.com/Wguido/MorphoMapping/"
"BugTracker" = "http://github.com/Wguido/MorphoMapping/"