forked from facebookresearch/perfect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 1.12 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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
"""Install Making Language models better few-shot learners."""
import setuptools
def setup_package():
setuptools.setup(
name='fewshot',
version='0.0.1',
description='PERFECT: Prompt-free and Efficient Few-shot Learning with Language Models',
author='Rabeeh Karimi Mahabadi',
license='MIT License',
packages=setuptools.find_packages(
exclude=['docs', 'tests', 'scripts', 'examples']),
install_requires=[
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords='nlp machinelearning',
)
if __name__ == '__main__':
setup_package()