-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
102 lines (91 loc) · 2.31 KB
/
setup.cfg
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[metadata]
name = minerva
description = Package to build, train and test neural network models on geospatial data
long_description = README.md
long_description_content_type = text/markdown
author = attr: minerva.__author__
author_email = attr: minerva.__contact__
url = https://github.com/Pale-Blue-Dot-97/Minerva
download_url = https://github.com/Pale-Blue-Dot-97/Minerva/releases/download/v0.24.0/minerva-0.24.0-py3-none-any.whl
license = attr: minerva.__license__
license_files = LICENCE
classifiers =
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Development Status :: 4 - Beta
Operating System :: OS Independent
Natural Language :: English
[options]
packages = minerva, minerva.utils, minerva.models
install_requires =
torchgeo>=0.6.0
numpy>=2.0.0
numba>=0.57.0;python_version>='3.11'
torch>=2.4.0
pandas
imageio
torchinfo
tabulate
inputimeout
ipykernel
psutil
geopy
overload
opencv-python
lightly
argcomplete
hydra-core
mlflow-skinny
wandb
segmentation-models-pytorch
tifffile
kornia
torcheval
python_requires = >=3.10
package_dir =
scripts = scripts/MinervaExp.py
scripts/ManifestMake.py
scripts/MinervaClusterVis.py
scripts/MinervaPipe.py
scripts/RunTensorBoard.py
scripts/Torch_to_ONNX.py
scripts/TorchWeightDownloader.py
notebooks/Visualise_Siamese_Pair.ipynb
notebooks/SSL4EO-S12_Demo.ipynb
notebooks/Torchgeo_FCN_Demo.ipynb
notebooks/Torchgeo_FCN_Full.ipynb
notebooks/Torchgeo_FCN_Small.ipynb
zip_safe = no
[options.extras_require]
test =
internet-sabotage3
flake8
mypy
pytest
pytest-cov
pytest-lazy-fixtures
tox
docs =
myst_parser
sphinx
sphinx-rtd-theme
dev =
pre-commit
build
pipenv
onnx =
onnx2torch
tensorflow =
tensorflow
dfc =
torchdata
[options.package_data]
minerva = py.typed
minerva.utils = py.typed
minerva.models = py.typed
minerva.bin = py.typed
[flake8]
max-line-length = 120