-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
62 lines (55 loc) · 1.7 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
61
62
[metadata]
name = flashcards-core
version = 0.0.2
author = Sara Zanzottera
description = Library for flashcards and spaced repetition applications
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ebisu-flashcards/flashcards-core
project_urls =
Homepage = https://github.com/ebisu-flashcards/flashcards-core
Bug Tracker = https://github.com/ebisu-flashcards/flashcards-core/issues
Documentation = https://ebisu-flashcards.github.io/flashcards-core/
Changelog = https://github.com/ebisu-flashcards/flashcards-core/releases
keywords = ["flashcards", "srs", "study"]
classifiers =
Development Status :: 4 - Beta,
Intended Audience :: Developers,
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]
packages = find:
python_requires = >=3.6, <4
install_requires =
sqlalchemy
sqlalchemy-json
ebisu==2.1.0 # FIXME we could make algorithms pluggable instead of pulling them all... right?
[options.extras_require]
dev =
pytest
pytest-cov
pytest-random-order
freezegun # Mock datetime objects
pre-commit
black
flake8
coveralls
sphinx
sphinx-rtd-theme
m2r2 # Render included Markdown in Sphinx
docutils # Temporary fix for bullet points
[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