-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.2 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "readingbricks"
version = "0.2.1"
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"}
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.9"
dependencies = [
"Flask",
"Flask-Markdown",
"Flask-Misaka",
"nltk",
"pyparsing",
"python-markdown-math"
]
[tool.setuptools]
packages = [
"readingbricks",
"readingbricks.static.css",
"readingbricks.static.images.favicons",
"readingbricks.templates"
]
[tool.setuptools.package-data]
"readingbricks.static.css" = ["*.css"]
"readingbricks.static.images.favicons" = ["*.ico", "*.png"]
"readingbricks.templates" = ["*.html"]