EOX GitLab Instance

Skip to content
Snippets Groups Projects
setup.py 790 B
Newer Older
from setuptools import setup, find_packages

# with open("README.md", "r") as fh:
#     long_description = fh.read()
long_description = ""

setup(
    name="registrar", # Replace with your own username
    version="1.3.4",
    author="",
    author_email="",
Lubomir Dolezal's avatar
Lubomir Dolezal committed
    description="registrar for PVS",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://gitlab.eox.at/esa/prism/vs/-/tree/master/core",
    packages=find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
    entry_points={
        "console_scripts": [
            "registrar = registrar.cli:cli",
        ],
    }
)