-
Notifications
You must be signed in to change notification settings - Fork 382
/
setup.py
46 lines (44 loc) · 1.19 KB
/
setup.py
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
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'
]
}
)