mirror of
https://github.com/mapbox/robosat.git
synced 2025-12-08 20:14:01 +00:00
47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
import setuptools
|
|
|
|
with open('README.md', 'r') as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name='robosat',
|
|
version='1.2.0',
|
|
author='Mapbox',
|
|
description='Semantic segmentation on aerial and satellite imagery.',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/mapbox/robosat',
|
|
packages=setuptools.find_packages(),
|
|
classifiers=(
|
|
'Programming Language :: Python :: 3',
|
|
"License :: OSI Approved :: MIT License",
|
|
'Operating System :: OS Independent',
|
|
),
|
|
install_requires=[
|
|
'flask~=1.0',
|
|
'geojson~=2.4',
|
|
'matplotlib~=3.1',
|
|
'mercantile~=1.0',
|
|
'numpy~=1.16',
|
|
'opencv-contrib-python-headless~=4.0',
|
|
'osmium==2.15.2',
|
|
'pillow~=6.0',
|
|
'pyproj~=2.1',
|
|
'rasterio~=1.0',
|
|
'requests~=2.22',
|
|
'rtree~=0.8',
|
|
'scipy~=1.3',
|
|
'shapely~=1.6',
|
|
'supermercado~=0.0.5',
|
|
'toml~=0.10',
|
|
'torch~=1.1',
|
|
'torchvision~=0.3',
|
|
'tqdm~=4.32',
|
|
],
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'rs=robosat.tools.__main__:main'
|
|
]
|
|
}
|
|
)
|