firefly-viewer/pyproject.toml
Jacob Schmidt 8c2ea154fe feat: Update project metadata and supported Python versions
This commit updates the project metadata in both `setup.py` and `pyproject.toml` to reflect the current state of the project.

Specifically, it:
- Bumps the project version from 1.0.0 to 1.0.2.
- Updates the author and author email to "ID Solutions" and "info@innovativedevsolutions.org", respectively.
- Adds support for Python versions 3.12 and 3.13 to the classifiers list.
- Corrects a typo in the Homepage URL in `pyproject.toml`.
2025-04-11 23:25:13 -05:00

53 lines
1.7 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "firefly-viewer"
version = "1.0.2"
description = "A web-based viewer for Firefly databases"
readme = "README.md"
authors = [{ name = "IDSolutions", email = "info@innovativedevsolutions.org" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"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",
"Topic :: Database :: Front-Ends",
]
keywords = ["firefly", "database", "viewer", "web", "flask"]
dependencies = [
"Flask>=3.0.2",
"redis>=5.0.1",
"python-dotenv>=1.0.1",
"ifireflylib>=0.2.5",
"click>=8.1.7",
"waitress>=2.1.2",
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://gitea.innovativedevsolutions.org/IDSolutions/firefly-viewer"
Documentation = "https://gitea.innovativedevsolutions.org/IDSolutions/firefly-viewer#readme"
Repository = "https://gitea.innovativedevsolutions.org/IDSolutions/firefly-viewer.git"
"Bug Tracker" = "https://gitea.innovativedevsolutions.org/IDSolutions/firefly-viewer/issues"
[project.scripts]
firefly-viewer = "firefly.cli:main"
[tool.setuptools]
packages = ["firefly"]
[tool.setuptools.package-data]
firefly = ["templates/*"]