Spaces:
Build error
Build error
File size: 706 Bytes
861c889 |
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 |
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='autoprompt',
version='0.0.1',
description='AutoPrompt',
long_description=_LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='UCI NLP',
url='https://github.com/ucinlp/autoprompt',
packages=setuptools.find_packages(),
install_requires=[ ],
extras_require={
'test': ['pytest']
},
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='text nlp machinelearning',
)
|