-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (35 loc) · 1.35 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
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
with open(here / "requirements.txt") as fp:
install_requires = fp.read().strip().split("\n")
install_requires = [p.strip() for p in install_requires]
setup(
name="llmog",
version="0.1.0",
author="",
author_email="",
description="Exploiting the Potential of Seq2Seq Models as Robust Few-Shot Learners",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="NLP transformer lm llm",
license="Apache",
package_dir={"": "src"},
packages=find_packages(where="src"),
zip_safe=False,
python_requires=">=3.8",
install_requires=install_requires, # External packages as dependencies
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)