-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/TreeOfLife_toolbox"]
[project]
name = "TreeOfLife_toolbox"
dynamic = ["version"]
authors = [
{ name = "Andrey Kopanev", email = "kopanev.1@osu.edu" },
{ name = "Elizabeth G. Campolongo", email = "e.campolongo479@gmail.com" },
{ name = "Matthew J. Thompson", email = "thompson.m.j@outlook.com" },
]
description = "A tool for processing datasets that was downloaded using the distributed-downloader package."
readme = "README.md"
requires-python = ">=3.10, <3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"attrs",
"brotli",
"cramjam",
"cython",
"fsspec",
"inflate64",
"mpi4py",
"multivolumefile",
"opencv-python",
"pandas",
"pathspec",
"pillow",
"psutil",
"pyarrow",
"pybcj",
"pycryptodomex",
"pyppmd",
"pyspark",
"python-dotenv",
"pyyaml",
"pyzstd",
"requests",
"setuptools",
"texttable",
"trove-classifiers",
"typing-extensions",
"wheel"
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff"
]
keywords = [
"parallel",
"distributed",
"url",
"mpi-applications",
"dataset-generation",
]
[project.urls]
Homepage = "https://github.com/Imageomics/distributed-downloader"
Repository = "https://github.com/Imageomics/distributed-downloader.git"
"Bug Tracker" = "https://github.com/Imageomics/distributed-downloader/issues"
[project.scripts]
tree_of_life_toolbox = "TreeOfLife_toolbox.main.main:main"
[tool.hatch.version]
path = "src/TreeOfLife_toolbox/main/__about__.py"