forked from open-spaced-repetition/py-fsrs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 873 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
28
29
30
31
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fsrs"
version = "5.1.2"
description = "Free Spaced Repetition Scheduler"
readme = "README.md"
authors = [
{ name = "Jarrett Ye", email = "jarrett.ye@outlook.com" },
{ name = "Joshua Hamilton", email = "hamiltonjoshuadavid@gmail.com" }
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["spaced-repetition", "flashcard"]
dependencies = []
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/open-spaced-repetition/py-fsrs"
[project.optional-dependencies]
dev = ["pytest", "ruff", "setuptools", "torch", "numpy", "pandas", "poetry"]
optimizer = ["torch", "numpy", "pandas"]
[tool.pytest.ini_options]
pythonpath = "."