24 lines
631 B
TOML
24 lines
631 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "heurams"
|
|
version = "0.5.0"
|
|
description = "Heuristic Assisted Memory Scheduler"
|
|
license = {file = "LICENSE"}
|
|
classifiers = [
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Education",
|
|
"Intended Audience :: Education",
|
|
]
|
|
keywords = ["spaced-repetition", "memory", "learning", "tui", "textual", "flashcards", "education"]
|
|
|
|
readme = "README.md"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|