From 56da76e549ddae3ce2da33e60edb7a0b4ad675fd Mon Sep 17 00:00:00 2001 From: Remi Cresson <remi.cresson@irstea.fr> Date: Sat, 26 Mar 2022 20:07:18 +0100 Subject: [PATCH] ADD: setup.py --- setup.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..965d35a --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +import setuptools + +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + +setuptools.setup( + name="scenes", + version="1.0.0", + author="Rémi Cresson", + author_email="remi.cresson@inrae.fr", + description="Library to ease the processing of local remote sensing products", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://gitlab.irstea.fr/remi.cresson/scenes", + classifiers=[ + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Topic :: Scientific/Engineering :: GIS", + "Topic :: Scientific/Engineering :: Image Processing", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + ], + packages=setuptools.find_packages(), + python_requires=">=3.6", + keywords="remote sensing, otb, orfeotoolbox, orfeo toolbox, pyotb", +) +#package_dir={"": "src"}, + -- GitLab