-
Notifications
You must be signed in to change notification settings - Fork 353
/
setup.py
55 lines (52 loc) · 1.82 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
requirements = [
"black<=21.12b0",
"datasets>=1.7.0",
"flake8",
"isort==5.8.0",
"pytest",
"pyyaml>=5",
"streamlit==0.82",
"jinja2",
"plotly",
"requests",
"pandas",
##############################################################
# Dependencies in this section are added for specific datasets
##############################################################
"py7zr",
##############################################################
# End of dataset-specific dependencies
##############################################################
]
setup(
name='promptsource',
version='0.2.3',
url='https://github.com/bigscience-workshop/promptsource.git',
author='BigScience - Prompt Engineering Working Group',
author_email='sbach@cs.brown.edu,victor@huggingface.co',
python_requires='>=3.7,<4.0',
install_requires=requirements,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description='An Integrated Development Environment and Repository for Natural Language Prompts.',
packages=find_packages(),
license="Apache Software License 2.0",
long_description=readme,
long_description_content_type="text/markdown",
package_data={"": [
"templates/*/*.yaml",
"templates/*/*/*.yaml",
]}
)