aiuNN/setup.py

26 lines
781 B
Python

from setuptools import setup, find_packages
setup(
name="aiunn",
version="0.1.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
line.strip()
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",
)