-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
60 lines (52 loc) · 1.55 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[metadata]
name = flashcards-cli
version = 0.0.1
author = Sara Zanzottera
description = Minimal CLI frontend for flashcards-core
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ebisu-flashcards/flashcards-cli
project_urls =
Homepage = https://github.com/ebisu-flashcards/flashcards-cli
Bug Tracker = https://github.com/ebisu-flashcards/flashcards-cli/issues
Changelog = https://github.com/ebisu-flashcards/flashcards-cli/releases
keywords = ["flashcards", "srs", "study"]
classifiers =
Development Status :: 4 - Beta,
License :: OSI Approved :: AGPLv3 License,
Programming Language :: Python,
Programming Language :: Python :: 3,
Programming Language :: Python :: 3 :: Only,
Programming Language :: Python :: 3.6,
Programming Language :: Python :: 3.7,
Programming Language :: Python :: 3.8,
Programming Language :: Python :: 3.9,
[options]
python_requires = >=3.6, <4
install_requires =
# flashcards-core # when it gets released on pypi
PyInquirer==1.0.3
click==8.0.1
fuzzyfinder==2.1.0
sqlalchemy==1.4.22 # FIXME Here for typing only
[options.extras_require]
dev =
pytest==6.2.4
pytest-cov==2.12.1
pytest-random-order==1.0.4
pre-commit==2.13.0
black==21.7b0
flake8==3.9.2
coveralls==3.2.0
[options.entry_points]
console_scripts =
flashcards = flashcards_cli:main
[flake8]
max-line-length = 99
exclude = .git, __pycache__
max-complexity = 10
select=C,E,F,W
ignore=W503,W504
[tool:pytest]
log_cli = 1
log_cli_level = DEBUG