generated from guorbit/software-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.21 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "crop-health"
version = "0.1.0"
authors = [{ name = "GU Orbit Software Team", email = "[email protected]" }]
requires-python = ">=3.10"
description = "custom description here"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy >= 1.24.3",
"rasterio >= 1.3.6",
"GDAL >= 3.6.2",
"Pillow >= 9.4.0",
"matplotlib >= 3.8.2 ",
"toml >= 0.10.2",
"tqdm >= 4.64.1",
"opencv-python-headless >= 4.8.0.76"
]
[tool.setuptools]
packages = ["utilities"]
[tool.pytest.ini_options]
markers = [
"staging: Mark a test as part of the staging environment",
"production: Mark a test as part of the production environment",
"development: Mark a test as part of the development environment",
]
[project.optional-dependencies]
dev = [
"pytest >= 7.2.2",
"pytest-cov >= 4.0.0",
"pytest-mock >= 3.10.0",
"twine >= 4.0.0",
"Sphinx >= 7.2.4",
"furo >= 2023.8.19",
"sphobjinv >= 2.3.1,"
]