-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Migrate from setup.py to pyproject.toml
- Loading branch information
1 parent
ca9e1c1
commit c73ae9b
Showing
3 changed files
with
37 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "readingbricks" | ||
version = "0.2.0" | ||
description = "Flask app for reading and searching notes from a personal knowledge base" | ||
readme = "README.md" | ||
keywords = ["knowledge_base", "lecture_notes", "search_engine", "tf_idf", "zettelkasten"] | ||
urls = {Homepage = "https://github.com/Nikolay-Lysenko/readingbricks"} | ||
authors = [{name = "Nikolay Lysenko", email = "nikolay-lysenco@yandex.ru"}] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: End Users/Desktop", | ||
"Topic :: Education", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3" | ||
] | ||
requires-python = ">= 3.8" | ||
dependencies = [ | ||
"Flask", | ||
"Flask-Markdown", | ||
"Flask-Misaka", | ||
"nltk", | ||
"pyparsing", | ||
"python-markdown-math" | ||
] | ||
|
||
[tool.setuptools] | ||
packages = ["readingbricks"] | ||
|
||
[tool.setuptools.package-data] | ||
"readingbricks.static.css" = ["*.css"] | ||
"readingbricks.static.images" = ["*.png"] | ||
"readingbricks.templates" = ["*.html"] |