EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit aac4ccb9 authored by Fabian Schindler's avatar Fabian Schindler
Browse files

Adding missing setup.py

parent fa6220bc
No related branches found
No related tags found
3 merge requests!36Staging to master to prepare 1.0.0 release,!32Registrar modularization,!27Registrar modularization
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="0.0.1",
author="",
author_email="",
description="preprocessor 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",
],
}
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment