Commit a01a92fb authored by Cresson Remi's avatar Cresson Remi
Browse files

Merge branch '1-create_setup' into 'develop'

Resolve "Ajouter un setup.py pour que la librairie soit pip installable"

Closes #1

See merge request remi.cresson/scenes!14
parents ef12fcf2 dc62db7d
1 merge request!14Resolve "Ajouter un setup.py pour que la librairie soit pip installable"
Showing with 32 additions and 0 deletions
+32 -0
setup.py 0 → 100644
# -*- 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"},
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment