Skip to content

Commit

Permalink
build: moved to pyproject.toml from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Almas-Ali committed Feb 9, 2024
1 parent e85c5a3 commit c79ac12
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
[project]
name = "fronty"
dynamic = ["version"]
dependencies = []
requires-python = ">=3.7"
authors = [{name = "Md. Almas Ali", email = "almaspr3@gmail.com"}]
maintainers = [{name = "Md. Almas Ali", email = "almaspr3@gmail.com"}]
description = "A frontend web framework"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"web framework",
"frontend framework",
"frontend",
"web",
"framework",
"html",
"css",
"javascript",
"simple",
"easy",
"fast",
"lightweight",
"light",
"light-weight",
"quick",
"rapid",
]
classifiers = [
"Topic :: Internet",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]


[project.urls]
Homepage = "https://github.com/Almas-Ali/fronty"
Documentation = "https://github.com/Almas-Ali/fronty#readme"
Repository = "https://github.com/Almas-Ali/fronty"
"Bug Tracker" = "https://github.com/Almas-Ali/fronty/issues"


[project.scripts]
fronty = "fronty.cli:main"


[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"


[tool.hatch.version]
path = "fronty/__init__.py"


[tool.ruff.format]
quote-style = "single"

0 comments on commit c79ac12

Please sign in to comment.