forked from DPIRD-DMA/CloudS2Mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 979 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="clouds2mask",
version="1.1.2",
description="""Python library for cloud and cloud shadow segmentation in Sentinel-2
L1C imagery""",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Nick Wright",
author_email="[email protected]",
url="https://github.com/DPIRD-DMA/CloudS2Mask",
python_requires=">=3.7",
packages=find_packages(),
install_requires=[
"fastai>=2.7",
"timm>=0.9",
"tqdm>=4.0",
"rasterio>=1.3",
"gdown>=5.1.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
package_data={"clouds2mask": ["model_download_links.csv"]},
)