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`.
This commit is contained in:
parent
aef9be7edc
commit
8c2ea154fe
@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "firefly-viewer"
|
||||
version = "1.0.0"
|
||||
version = "1.0.2"
|
||||
description = "A web-based viewer for Firefly databases"
|
||||
readme = "README.md"
|
||||
authors = [{ name = "FireflyViewer", email = "your.email@example.com" }]
|
||||
authors = [{ name = "IDSolutions", email = "info@innovativedevsolutions.org" }]
|
||||
license = { file = "LICENSE" }
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
@ -22,6 +22,8 @@ classifiers = [
|
||||
"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"]
|
||||
@ -36,10 +38,10 @@ dependencies = [
|
||||
requires-python = ">=3.7"
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://gitea.innovativesdevsolutions.org/IDSolutions/firefly-viewer"
|
||||
Documentation = "https://gitea.innovativesdevsolutions.org/IDSolutions/firefly-viewer#readme"
|
||||
Repository = "https://gitea.innovativesdevsolutions.org/IDSolutions/firefly-viewer.git"
|
||||
"Bug Tracker" = "https://gitea.innovativesdevsolutions.org/IDSolutions/firefly-viewer/issues"
|
||||
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"
|
||||
|
10
setup.py
10
setup.py
@ -8,13 +8,13 @@ with open("requirements.txt", "r", encoding="utf-8") as fh:
|
||||
|
||||
setup(
|
||||
name="firefly-viewer",
|
||||
version="1.0.0",
|
||||
author="FireflyViewer",
|
||||
author_email="your.email@example.com", # You'll need to change this
|
||||
version="1.0.2",
|
||||
author="ID Solutions",
|
||||
author_email="info@innovativedevsolutions.org",
|
||||
description="A web-based viewer for Firefly databases",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://gitea.innovativedevsolutions.org/IDSolutions/firefly-viewer", # You'll need to change this
|
||||
url="https://gitea.innovativedevsolutions.org/IDSolutions/firefly-viewer",
|
||||
project_urls={
|
||||
"Bug Tracker": "https://gitea.innovativedevsolutions.org/IDSolutions/firefly-viewer/issues",
|
||||
},
|
||||
@ -42,6 +42,8 @@ setup(
|
||||
"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",
|
||||
],
|
||||
python_requires=">=3.7",
|
||||
|
Loading…
x
Reference in New Issue
Block a user