forked from salkrr/inka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.47 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
from setuptools import setup, find_packages
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="[email protected]",
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/lazy-void/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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
license="GPLv3",
keywords="anki, markdown, spaced-repetition",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.7",
install_requires=[
"mistune~=2.0.0rc1",
"requests~=2.25.1",
"click>=7.1.2,<8.1.0",
"rich>=10.1,<10.4",
],
entry_points={"console_scripts": ["inka=inka.cli:cli"]},
)