Spaces:
Running
Running
File size: 1,134 Bytes
c2ba4d5 |
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 |
import platform
from setuptools import find_packages, setup
with open("requirements.txt", encoding="utf8") as r:
required_packages = [
package_name
for package_name in r.read().splitlines()
if not package_name.startswith("git+")
]
if platform.system() == "Windows":
required_packages.append("winloop")
elif platform.system() == "Linux":
required_packages.append("uvloop")
setup(
name="varco_arena", # ํจํค์ง์ ์ด๋ฆ
version="1.0.0", # ํจํค์ง์ ๋ฒ์
author="Text AI Lab, Generation Model Team", # ์์ฑ์ ์ด๋ฆ
author_email="[email protected]", # ์์ฑ์ ์ด๋ฉ์ผ
description="VARCO Arena๋ ๊ฐ ๋ชจ๋ธ ๋ณ๋ก ์์ฑ๋ ๊ฒฐ๊ณผ๋ฅผ ๊ธฐ๋ฐ์ผ๋ก ์ด๋ค ๋ชจ๋ธ์ด ๊ฐ์ฅ ์ข์ ๋ชจ๋ธ์ธ์ง ํ๋ณํด์ฃผ๋ ํ๋ก์ ํธ์
๋๋ค.", # ํจํค์ง์ ๋ํ ๊ฐ๋จํ ์ค๋ช
packages=find_packages(), # ํจํค์ง ํด๋๋ฅผ ์๋์ผ๋ก ์ฐพ์ ์ถ๊ฐ
install_requires=required_packages, # ํจํค์ง ์ค์น์ ํ์ํ ๋ค๋ฅธ ํจํค์ง๋ค
dependency_links=["git+https://github.com/shobrook/openlimit.git#egg=openlimit"],
)
|