mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00

Earlier today I pushed a change that split this code up into multiple repos, but that has proved to complicate things too much. So we're back to a single repo, except the individual submodules are better separated than they were before. The README files need updating again; I will push them out soon. Aside from splitting out the different modules, the sound code has moved from from anki to aqt.
30 lines
772 B
Python
30 lines
772 B
Python
import setuptools, sys
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
platform_reqs = []
|
|
if sys.platform == "win32":
|
|
platform_reqs.append("psutil")
|
|
if sys.platform != "win32" and sys.platform != "darwin":
|
|
platform_reqs.append("distro")
|
|
|
|
setuptools.setup(
|
|
name="anki",
|
|
version="0.1.0",
|
|
author="Ankitects Pty Ltd",
|
|
description="Anki's library code",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://apps.ankiweb.net",
|
|
packages=setuptools.find_packages(".", exclude=["tests"]),
|
|
classifiers=[
|
|
],
|
|
python_requires='>=3.6',
|
|
install_requires=[
|
|
'beautifulsoup4',
|
|
'requests',
|
|
'decorator',
|
|
'protobuf',
|
|
] + platform_reqs
|
|
)
|