8946ad5483
these builds are now available on https://github.com/ankitects/anki-typecheck The add-on docs will be updated shortly to provide info on using the new hooks and type checking.
28 lines
831 B
Python
28 lines
831 B
Python
import setuptools
|
|
|
|
with open("../meta/version") as fh:
|
|
version = fh.read().strip()
|
|
|
|
setuptools.setup(
|
|
name="anki",
|
|
version=version,
|
|
author="Ankitects Pty Ltd",
|
|
description="Anki's library code",
|
|
long_description="Anki's library code",
|
|
long_description_content_type="text/markdown",
|
|
url="https://apps.ankiweb.net",
|
|
packages=setuptools.find_packages(".", exclude=["tests"]),
|
|
license="License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
package_data={"anki": ["py.typed"]},
|
|
classifiers=[],
|
|
python_requires=">=3.7",
|
|
install_requires=[
|
|
"beautifulsoup4",
|
|
"requests",
|
|
"decorator",
|
|
"protobuf",
|
|
'psutil; sys_platform == "win32"',
|
|
'distro; sys_platform != "darwin" and sys_platform != "win32"',
|
|
],
|
|
)
|