updated project info
This commit is contained in:
parent
79e0aeb269
commit
0611a26564
|
@ -4,11 +4,14 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "aiunn"
|
name = "aiunn"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "A brief description of your package"
|
description = "Finetuner for image upscaling using AIIA"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.7"
|
requires-python = ">=3.10"
|
||||||
license = {file = "LICENSE"}
|
license = {file = "LICENSE"}
|
||||||
authors = [
|
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"
|
17
setup.py
17
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="aiunn",
|
name="aiunn",
|
||||||
version="0.1.0",
|
version="0.1.1",
|
||||||
packages=find_packages(where="src"),
|
packages=find_packages(where="src"),
|
||||||
package_dir={"": "src"},
|
package_dir={"": "src"},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
@ -10,16 +10,5 @@ setup(
|
||||||
for line in open("requirements.txt")
|
for line in open("requirements.txt")
|
||||||
if line.strip() and not line.startswith("#")
|
if line.strip() and not line.startswith("#")
|
||||||
],
|
],
|
||||||
author="Falko Habel",
|
python_requires=">=3.10",
|
||||||
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",
|
|
||||||
)
|
|
Loading…
Reference in New Issue