-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.56 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 1.56 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
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).resolve().parent
README = (ROOT / "README.md").read_text(encoding="utf-8")
setup(
name="genevolve",
version="0.1.0",
description=(
"GenEvolve: Self-Evolving Image Generation Agents via Tool-Orchestrated "
"Visual Experience Distillation."
),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/MeiGen-AI/GenEvolve",
license="Apache-2.0",
packages=find_packages(exclude=("scripts", "examples", "assets")),
include_package_data=True,
package_data={"genevolve": ["knowledge/skills/*.md"]},
python_requires=">=3.10",
# Python package minimum. Install the main runtime stack from
# requirements.txt before editable install; see README.
install_requires=[
"openai>=1.30",
"requests>=2.28",
"pillow>=10.0",
],
extras_require={
# Install this inside a separate qwenimage renderer environment.
"qwen": [
"torch>=2.6,<2.7",
"torchvision>=0.21,<0.22",
"diffusers>=0.38",
"transformers>=4.57",
"accelerate>=1.0",
"fastapi",
"uvicorn",
],
},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)