-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.36 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cautiousrobot"]
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "cautious-robot"
dynamic = ["version"]
authors = [
{ name="Elizabeth G. Campolongo", email="[email protected]" },
]
description = "Simple downloader that downloads images from URLs in a CSV and names them by the given column. Then uses sum-buddy to gather and record checksums for all downloaded images."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"argparse",
"pandas",
"pillow",
"sum-buddy @ git+https://github.com/Imageomics/[email protected]",
]
[project.optional-dependencies]
dev = ["pytest"]
keywords = [
"downloader",
"csv",
"images",
"url",
"checksums",
"downsized",
"sum-buddy",
]
[project.urls]
Homepage = "https://github.com/Imageomics/cautious-robot"
Repository = "https://github.com/Imageomics/cautious-robot.git"
"Bug Tracker" = "https://github.com/Imageomics/cautious-robot/issues"
[project.scripts]
cautious-robot = "cautiousrobot.__main__:main"
[tool.hatch.version]
path = "src/cautiousrobot/__about__.py"