-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
56 lines (49 loc) · 1.58 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import os
import re
import sys
import subprocess
from setuptools import setup, find_packages
from setuptools.command.install import install
pwd = os.path.dirname(__file__)
def readme():
with open(os.path.join(pwd, 'README.md')) as f:
content = f.read()
return content
def get_version():
with open(os.path.join(pwd, 'version.txt'), 'r') as f:
content = f.read()
return content
def has_nvcc():
try:
subprocess.run(['nvcc', '--version'], check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
return True
except (subprocess.CalledProcessError, FileNotFoundError):
return False
def fetch_requirements(path):
with open(path, 'r') as fd:
return [r.strip() for r in fd.readlines() if 'torch-scatter' not in r and not r.startswith('-f ')]
if has_nvcc():
install_requires = [
fetch_requirements('requirements/runtime.txt'),
'rotary_emb',
'xentropy',
]
else:
install_requires = [
fetch_requirements('requirements/runtime.txt'),
]
setup(
name='InternEvo',
version=get_version(),
description='an open-sourced lightweight training framework aims to support model pre-training without the need for extensive dependencies',
long_description=readme(),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=install_requires,
classifiers=[
'Programming Language :: Python :: 3.10',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
],
)