This repository has been archived by the owner on Mar 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
44 lines (41 loc) · 1.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import find_packages, setup
from src.inka import __version__
with open("README.md", mode="rt", encoding="utf-8") as f:
long_description = f.read()
setup(
name="inka",
version=__version__,
author="Kirill Salnikov",
author_email="salnikov.k54@gmail.com",
description="Command-line tool for adding flashcards from Markdown files to Anki",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/keiqu/inka",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Topic :: Education :: Computer Aided Instruction (CAI)",
"Topic :: Text Processing :: Markup :: Markdown",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
],
license="GPLv3",
keywords="anki, markdown, spaced-repetition",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.10",
install_requires=[
"mistune==2.0.5",
"requests==2.28.2",
"click==8.1.3",
"rich==13.3.3",
"PyQt6~=6.5",
"PyQt6-WebEngine~=6.5",
"aqt>=2.1.61",
],
entry_points={"console_scripts": ["inka=inka.cli:cli"]},
)