Skip to content

Commit

Permalink
Remove pyproject.toml from .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
LyubomirT committed Dec 2, 2023
1 parent 8a82c93 commit 92e32d9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ __pycache__/
temp/
PYPI.md
pypi/
pyproject.toml
dist/
26 changes: 26 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[project]
name = "lesp"
description = "LESP is a lightweight, efficient spelling proofreader written in Python. It's designed to be easy to use and lightweight, while still providing a decent result when checking for spelling errors. Resource consumption is kept to a minimum, and the program is designed to be as fast as possible."
version = "1.0.1"
readme = "PYPI.md"
authors = [
{ name = "Lyubomir Ternavskiy", email = "[email protected]" }
]
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
requires-python = ">=3.6"

[project.urls]
Homepage = "https://github.com/LyubomirT/lesp"
Issues = "https://github.com/LyubomirT/lesp/issues"

[tools.flit.metadata]
module="lesp"


[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]

0 comments on commit 92e32d9

Please sign in to comment.