chore: Add setup.py for backward compatibility

This commit is contained in:
Vikash Kothary 2022-07-02 14:13:37 +01:00
parent f1c0e1bf63
commit fcaec52995

12
src/setup.py Normal file
View File

@ -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/'
)