2022-07-02 21:13:37 +08:00
|
|
|
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",
|
2022-07-02 21:13:37 +08:00
|
|
|
description="Self-hosted Anki Sync Server.",
|
|
|
|
|
author="Anki Community",
|
|
|
|
|
author_email="kothary.vikash+ankicommunity@gmail.com",
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
url='https://ankicommunity.github.io/'
|
|
|
|
|
)
|