-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 898 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 898 Bytes
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
from setuptools import find_packages, setup
setup(
name="learning_german",
version="0.1.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"genanki>=0.13.0",
"deep-translator>=1.11.4",
"requests>=2.28.0",
"beautifulsoup4>=4.11.0",
"aiofiles>=24.1.0",
],
entry_points={
"console_scripts": [
("german-translate=learning_german.markdown_note_generator:main_async_wrapper"),
("german-to-anki=learning_german.anki_deck_generator:main"),
("extract-examples=learning_german.obsidian_words_and_examples_extractor:main"),
],
},
python_requires=">=3.13",
author="Abbas Endari",
description=("Tools for learning German with automated translation and flashcard generation"),
keywords="german, language-learning, anki, translation",
)