-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (60 loc) · 2.51 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (60 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
long_description = ""
readme_path = os.path.join(here, "README.md")
if os.path.exists(readme_path):
with open(readme_path, encoding="utf-8") as f:
long_description = f.read()
setup(
name="termux-diffusion",
version="1.3.1",
description="Production On-Device AI Image Generation Framework for Android Termux & Samsung Galaxy (Dual-Engine Python & Node.js)",
long_description=long_description,
long_description_content_type="text/markdown",
author="uno-km (AMEVA Foundation)",
author_email="hosequelbo@gmail.com",
url="https://github.com/uno-km/termux-diffusion",
project_urls={
"Documentation": "https://uno-km.github.io/termux-diffusion/",
"npm Package": "https://www.npmjs.com/package/termux-diffusion",
"Bug Tracker": "https://github.com/uno-km/termux-diffusion/issues",
"Source": "https://github.com/uno-km/termux-diffusion",
},
keywords=[
"stable-diffusion", "diffusion", "termux", "android", "samsung-galaxy",
"edge-ai", "on-device-ai", "image-generation", "gguf", "arm64",
"bionic-libc", "snapdragon", "exynos", "text-to-image", "txt2img",
"mobile-ai", "quantization", "generative-ai", "vulkan", "opencl",
"offline-ai", "private-ai", "ai-art", "comfyui-alternative", "webui-alternative"
],
packages=find_packages(),
package_data={
"termux_diffusion": ["py.typed"],
},
include_package_data=True,
python_requires=">=3.8",
install_requires=[],
entry_points={
"console_scripts": [
"termux-diffusion = termux_diffusion.cli:main",
"termux-diffusion-install = termux_diffusion.cli:run_install_cli",
"termux-diffusion-doctor = termux_diffusion.cli:run_doctor_cli",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Android",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Graphics",
],
)