sonsus's picture
others
c2ba4d5
raw
history blame
1.13 kB
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"],
)