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"],
)