Kumi
de11b2843d
Incremented the project version to 0.2.1, preparing for a new release with minor improvements and bug fixes. Additionally, refined the .gitignore file to explicitly include the distribution directory, ensuring build artifacts are not accidentally committed to version control. This step aligns with best practices for Python project maintenance and distribution.
31 lines
No EOL
835 B
TOML
31 lines
No EOL
835 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "structables"
|
|
version = "0.2.1"
|
|
authors = [
|
|
{ name="Private.coffee Team", email="support@private.coffee" },
|
|
]
|
|
description = "A simple frontend for Instructables"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"flask",
|
|
"bs4",
|
|
]
|
|
|
|
[project.scripts]
|
|
structables = "structables.main:main"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/privatecoffee/structables"
|
|
"Bug Tracker" = "https://git.private.coffee/privatecoffee/structables/issues"
|
|
"Source Code" = "https://git.private.coffee/privatecoffee/structables" |