2021-05-21 06:22:30 +03:00
|
|
|
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
|
|
|
|
[metadata]
|
|
|
|
name = torchgeo
|
|
|
|
version = 0.1.0
|
|
|
|
author = Adam J. Stewart
|
|
|
|
author_email = ajstewart426@gmail.com
|
|
|
|
description = TorchGeo: PyTorch data loaders for geospatial data
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown
|
2021-05-21 19:52:23 +03:00
|
|
|
url = https://github.com/microsoft/torchgeo
|
2021-05-21 06:22:30 +03:00
|
|
|
classifiers =
|
|
|
|
Development Status :: 1 - Planning
|
|
|
|
Intended Audience :: Science/Research
|
|
|
|
Programming Language :: Python :: 3
|
2021-06-18 00:05:26 +03:00
|
|
|
Programming Language :: Python :: 3.6
|
2021-06-18 01:56:41 +03:00
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
Programming Language :: Python :: 3.9
|
2021-05-21 06:22:30 +03:00
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
|
Topic :: Scientific/Engineering :: GIS
|
|
|
|
keywords = pytorch, deep learning, machine learning
|
|
|
|
|
|
|
|
[options]
|
|
|
|
setup_requires =
|
|
|
|
setuptools>=42
|
|
|
|
install_requires =
|
2021-06-18 00:22:42 +03:00
|
|
|
numpy
|
2021-06-16 22:13:11 +03:00
|
|
|
pillow
|
|
|
|
rasterio
|
2021-06-23 22:57:15 +03:00
|
|
|
torch>=1.7
|
2021-05-21 06:22:30 +03:00
|
|
|
torchvision
|
2021-06-18 00:05:26 +03:00
|
|
|
python_requires = >= 3.6
|
2021-05-21 06:22:30 +03:00
|
|
|
packages = find:
|
|
|
|
|
2021-06-17 23:50:17 +03:00
|
|
|
[options.packages.find]
|
|
|
|
include = torchgeo
|
|
|
|
|
2021-05-21 06:22:30 +03:00
|
|
|
[options.extras_require]
|
2021-06-18 00:22:42 +03:00
|
|
|
# Optional dataset requirements
|
2021-06-07 06:21:16 +03:00
|
|
|
cv4akenyacroptype =
|
2021-06-07 19:10:09 +03:00
|
|
|
radiant-mlhub>=0.2.1
|
2021-06-04 00:57:03 +03:00
|
|
|
landcoverai =
|
|
|
|
opencv-python
|
2021-06-24 00:21:36 +03:00
|
|
|
tropicalcyclonewindestimation =
|
2021-06-24 00:19:49 +03:00
|
|
|
radiant-mlhub>=0.2.1
|
2021-05-21 06:22:30 +03:00
|
|
|
vhr10 =
|
|
|
|
pycocotools
|
|
|
|
rarfile
|
2021-06-18 00:22:42 +03:00
|
|
|
|
|
|
|
# Optional developer requirements
|
|
|
|
docs =
|
|
|
|
sphinx
|
|
|
|
pytorch-sphinx-theme
|
|
|
|
style =
|
|
|
|
black
|
|
|
|
flake8
|
|
|
|
flake8-import-order
|
|
|
|
mypy
|
|
|
|
tests =
|
|
|
|
pytest
|
|
|
|
pytest-cov
|