From a512d572fcff5b08152023909d9c22e76bd6110f Mon Sep 17 00:00:00 2001 From: Sebastian Wendel Date: Fri, 11 Nov 2022 15:15:06 +0100 Subject: [PATCH] delete setup.py in favor of pyproject.toml --- scripts/setup.py | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 scripts/setup.py diff --git a/scripts/setup.py b/scripts/setup.py deleted file mode 100644 index 30fe0d4..0000000 --- a/scripts/setup.py +++ /dev/null @@ -1,21 +0,0 @@ -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)", - ], -)