anki-sync-server/src/setup.py

13 lines
373 B
Python
Raw Normal View History

from setuptools import setup, find_packages
# TODO: Generate from or parse values from pyproject.toml.
setup(
name="anki-sync-server",
2022-07-02 21:40:12 +08:00
version="2.4.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/'
)