From fcaec5299566e416f3785038a967c7794b1b4005 Mon Sep 17 00:00:00 2001 From: Vikash Kothary Date: Sat, 2 Jul 2022 14:13:37 +0100 Subject: [PATCH] chore: Add setup.py for backward compatibility --- src/setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/setup.py diff --git a/src/setup.py b/src/setup.py new file mode 100644 index 0000000..e6ec018 --- /dev/null +++ b/src/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup, find_packages + +# TODO: Generate from or parse values from pyproject.toml. +setup( + name="anki-sync-server", + version="2.3.0", + description="Self-hosted Anki Sync Server.", + author="Anki Community", + author_email="kothary.vikash+ankicommunity@gmail.com", + packages=find_packages(), + url='https://ankicommunity.github.io/' +)