File size: 518 Bytes
66f745d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(
    name="microforge",
    version="0.1.0",
    description="MicroForge: Mobile-First Image Generation with Recurrent Latent Planning",
    long_description=open("README.md").read(),
    long_description_content_type="text/markdown",
    packages=find_packages(),
    python_requires=">=3.8",
    install_requires=[
        "torch>=2.0",
        "torchvision",
        "einops",
    ],
    extras_require={
        "dev": ["matplotlib", "jupyter", "timm"],
    },
)