Spaces:
Sleeping
Sleeping
File size: 667 Bytes
1c8d9d7 83e9505 1c8d9d7 83e9505 1c8d9d7 83e9505 1c8d9d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="yume",
version="0.1",
packages=find_packages(),
install_requires=requirements,
author="Zai",
author_email="zaiyellyintaung@gmail.com",
description="LLM trained with Animanga dataset",
long_description="Inspired by Andrej Karpathy trained with japanese animanga dataset",
url="https://github.com/zaibutcooler/yume",
# classifiers=[
# 'Programming Language :: Python :: 3',
# 'License :: OSI Approved :: MIT License',
# 'Operating System :: OS Independent',
# ],
)
|