From 3c581f6f7fa4bdac20ebbed0400753b2c75e0c54 Mon Sep 17 00:00:00 2001 From: Sebastian Wendel Date: Mon, 7 Nov 2022 10:35:34 +0100 Subject: [PATCH] add python package description --- scripts/setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 scripts/setup.py diff --git a/scripts/setup.py b/scripts/setup.py new file mode 100644 index 0000000..30fe0d4 --- /dev/null +++ b/scripts/setup.py @@ -0,0 +1,21 @@ +import os +from setuptools import setup + +with open("./README.md", "r") as md: + readme = md.read() + +setup( + name='planktoscope', + version='1.0', + packages=['planktoscope'], + author="Romain Bazile", + author_email="planktoscope@gmail.com", + description="An open and affordable imaging platform for citizen oceanography", + long_description=readme, + long_description_content_type="text/markdown", + url="https://github.com/PlanktoScope/PlanktoScope", + classifiers=[ + "Programming Language :: Python :: 3.9", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + ], +)