add python package description

This commit is contained in:
Sebastian Wendel 2022-11-07 10:35:34 +01:00
parent ebf840fb4d
commit 3c581f6f7f
No known key found for this signature in database
GPG key ID: 1422B7DF78144640

21
scripts/setup.py Normal file
View file

@ -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)",
],
)