-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (34 loc) · 969 Bytes
/
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
import os
import setuptools
import sys
# Load README to get long description.
with open('README.md') as f:
_LONG_DESCRIPTION = f.read()
setuptools.setup(
name='nullprompt',
version='0.0.1',
description=(
'Code for "Cutting Down on Prompts and Parameters: '
'Simple Few-Shot Learning with Language Models".'
),
long_description=_LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='UCI NLP',
url='https://github.com/ucinlp/null-prompts',
packages=setuptools.find_packages(),
install_requires=[
'adapter-transformers==1.1.0',
'Jinja2==2.7.0',
'PyYAML==5.3.1',
'tensorboard==2.4.1',
'scipy==1.3.1',
],
extras_require={
'test': ['pytest']
},
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='text nlp machinelearning',
)