torchgeo/setup.cfg

62 строки
1.5 KiB
INI
Исходник Обычный вид История

# 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
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
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
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
shapely>=1.2.9
2021-06-23 22:57:15 +03:00
torch>=1.7
torchvision!=0.10.0
2021-06-18 00:05:26 +03:00
python_requires = >= 3.6
packages = find:
2021-06-17 23:50:17 +03:00
[options.packages.find]
include = torchgeo
[options.extras_require]
2021-06-18 00:22:42 +03:00
# Optional dataset requirements
datasets =
2021-07-08 00:50:28 +03:00
h5py
2021-06-04 00:57:03 +03:00
opencv-python
pycocotools
radiant-mlhub>=0.2.1
rarfile
2021-06-18 00:22:42 +03:00
# Optional developer requirements
docs =
sphinx
pytorch-sphinx-theme
style =
2021-07-06 19:40:22 +03:00
black[colorama]>=21
2021-06-18 00:22:42 +03:00
flake8
isort[colors]>=4.3.5
2021-06-18 00:22:42 +03:00
tests =
2021-07-05 01:29:51 +03:00
mypy>=0.900
pytest>=6.0
2021-06-18 00:22:42 +03:00
pytest-cov