Skip to content
Snippets Groups Projects
Commit 4815c079 authored by Simon Grasse's avatar Simon Grasse
Browse files

include multiple authors inpackage metadata

parent 20cf51c7
Branches
Tags
1 merge request!83GUI is available
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
\ No newline at end of file
[metadata]
name = geo-location-services
version = 0.9.0
author =
Lukas H. Leufen
Tom Ohlmeyer
author_email = t.ohlmeyer@fz-juelich.de
description=A collection of Django REST services for extraction geo information at point locations
long_description = file: README.md
long_description_content_type = text/markdown
url = https://gitlab.version.fz-juelich.de/toar/geo-location-services
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
keywords = django, django-rest-framework, point-locations, metadata, gis
[options]
packages =
geo_location_services
services
utils
import setuptools
import geo_location_services
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="geo-location-services",
version=geo_location_services.__version__,
author="Lukas H. Leufen",
author_email="l.leufen@fz-juelich.de",
description="A collection of Django REST services for extraction geo information at point locations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.version.fz-juelich.de/toar/geo-location-services",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='django django-rest-framework point-locations metadata gis'
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment