diff --git a/pyproject.toml b/pyproject.toml index 05a4c5c..097b25b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py index 55b4702..3d8c720 100644 --- a/setup.py +++ b/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",