forked from forksbot/baeuda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
44 lines (40 loc) · 1019 Bytes
/
setup.cfg
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
[metadata]
name = baeuda
description = ":mortar_board: Baeuda - 배우다 - Learn - Create Anki Cards from Joplin Notes"
author = FoxMaSk
author_email = [email protected]
maintainer = FoxMaSk
maintainer_email = [email protected]
url = https://github.com/foxmask/baeuda
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD License
keywords = anki card joplin
version = 0.2.0
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet
Topic :: Communications
Topic :: Database
[options]
packages = find:
zip_safe = false
include_package_data = true
install_requires =
beautifulsoup4
joplin-api
pypandoc
requests
[options.packages.find]
exclude =
tests
[flake8]
max-line-length = 120
exclude = .tox,build,.eggs
ignore = F401