-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
50 lines (48 loc) · 1.73 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
47
48
49
50
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup
setup(
name="pyraws",
version="1.0.0",
description="Python for RAW Sentinel2 data (PyRawS) is a powerful open-source Python package"
+ " that provides a comprehensive set of tools for working with Sentinel-2 Raw data. It provides utilities for"
+ " coarse spatial bands coregistration, geo-referencing, data visualization, and image processing.",
long_description=open("README.md", encoding="cp437").read(),
long_description_content_type="text/markdown",
url="https://github.com/ESA-PhiLab/PyRawS",
author="ESA Philab",
author_email="gabriele.meoni@esa.int",
install_requires=[
"geopy",
"geopandas",
"glymur",
"numpy",
"opencv-python",
"pandas",
"scipy",
"matplotlib",
"termcolor",
"torch",
"tqdm",
"torchvision",
"scikit-image",
"scikit-learn",
"rasterio",
"tifffile",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Computer Vision",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
],
packages=["pyraws", "pyraws.database", "pyraws.raw", "pyraws.l1", "pyraws.utils"],
python_requires=">=3.8, <4",
project_urls={"Source": "https://github.com/ESA-PhiLab/PyRawS"},
)