-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
79 lines (65 loc) · 2.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import pathlib
from typing import List, Tuple
from setuptools import find_packages, setup
import codecs
import os.path
def read(rel_path: str) -> str:
"""Read text from a file.
Based on https://github.com/pypa/pip/blob/main/setup.py#L7.
Args:
rel_path (str): Relative path to the target file.
Returns:
str: Text from the file.
"""
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, rel_path)) as fp:
return fp.read()
def requirements(rel_path: str) -> Tuple[List[str], List[str]]:
"""Parse pip-formatted requirements file.
Args:
rel_path (str): Path to a requirements file.
Returns:
Tuple[List[str], List[str]]: Extra package index URLs and setuptools-compatible package specifications.
"""
packages = read(rel_path).splitlines()
result = []
for pkg in packages:
if pkg.strip().startswith("#") or not pkg.strip():
continue
result.append(pkg)
return result
requirements_file = "requirements.txt"
requirements_ = requirements(requirements_file)
setup(
name="ullme",
version="0.0.4",
description="ULLME: A Unified Framework for Large Language Model Embeddings with Generation-Augmented Learning",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/nlp-uoregon/ullme",
author="NLP Group at the University of Oregon",
author_email="[email protected]",
license='Apache License 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(),
include_package_data=True,
install_requires=requirements_,
)