| [project] |
| name = "jagirl-ui" |
| version = "0.1.0" |
| description = "SDXL-based anime girl image generation using aipicasso/jagirl model with Gradio UI" |
| readme = "README.md" |
| keywords = ["ai", "image-generation", "stable-diffusion", "sdxl", "anime", "gradio", "huggingface"] |
| classifiers = [ |
| "Development Status :: 3 - Alpha", |
| "Intended Audience :: Developers", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| "Programming Language :: Python :: 3", |
| "Programming Language :: Python :: 3.11", |
| "Programming Language :: Python :: 3.12", |
| "Programming Language :: Python :: 3.13", |
| ] |
| requires-python = ">=3.11" |
| dependencies = [ |
| |
| "huggingface-hub>=0.19.0", |
| "diffusers>=0.28.0", |
| "transformers>=4.40.0", |
| "accelerate>=0.24.0", |
| "safetensors>=0.3.0", |
| |
| "numpy>=1.24.0", |
| "scipy>=1.11.0", |
| "pillow>=10.0.0", |
| |
| "gradio>=5.0.0", |
| |
| "python-dotenv>=1.0.0", |
| "beautifulsoup4>=4.12.0", |
| "lxml>=5.0.0", |
| ] |
|
|
| [project.optional-dependencies] |
| gpu = [ |
| "xformers>=0.0.20", |
| ] |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| [build-system] |
| requires = ["setuptools>=61.0", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [tool.setuptools] |
| |
| packages = ["utils"] |
|
|
| [tool.setuptools.package-data] |
| |
| "*" = [] |
|
|
|
|