Skip to content

Commit

Permalink
chore: Migrate from setup.py to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay-Lysenko committed Feb 25, 2024
1 parent ca9e1c1 commit c73ae9b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 52 deletions.
37 changes: 37 additions & 0 deletions pyproject.toml
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 = "[email protected]"}]
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"]
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

50 changes: 0 additions & 50 deletions setup.py

This file was deleted.

0 comments on commit c73ae9b

Please sign in to comment.