updated project info

This commit is contained in:
Falko Victor Habel 2025-02-25 15:04:38 +01:00
parent 79e0aeb269
commit 0611a26564
2 changed files with 11 additions and 19 deletions

View File

@ -4,11 +4,14 @@ build-backend = "setuptools.build_meta"
[project]
name = "aiunn"
version = "0.1.0"
description = "A brief description of your package"
version = "0.1.1"
description = "Finetuner for image upscaling using AIIA"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
{name = "Falko Habel", email = "falko.habel@gmx.de"},
]
[project.urls]
"Homepage" = "https://gitea.fabelous.app/Machine-Learning/aiuNN"

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="aiunn",
version="0.1.0",
version="0.1.1",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
@ -10,16 +10,5 @@ setup(
for line in open("requirements.txt")
if line.strip() and not line.startswith("#")
],
author="Falko Habel",
author_email="falko.habel@gmx.de",
description="Finetuner for image upscaling using AIIA",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/yourusername/aiunn",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)
python_requires=">=3.10",
)