setup.py 263 Bytes
Newer Older
mashun1's avatar
kolors  
mashun1 committed
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup, find_packages

setup(
    name="kolors",
    version="0.1",
    author="Kolors",
    description="The training and inference code for Kolors models.",
    packages=find_packages(),
    install_requires=[],
    dependency_links=[],
)