bigscience/promptsource
105
1from setuptools import setup, find_packages2 3with open("README.md", "r", encoding="utf-8") as readme_file:4 readme = readme_file.read()5 6requirements = [7 "black<=21.12b0",8 "datasets>=1.7.0",9 "flake8",10 "isort==5.8.0",11 "pytest",12 "pyyaml>=5",13 "streamlit==0.82",14 "jinja2",15 "plotly",16 "requests",17 "pandas",18 ##############################################################19 # Dependencies in this section are added for specific datasets20 ##############################################################21 "py7zr",22 ##############################################################23 # End of dataset-specific dependencies24 ##############################################################25]26 27setup(28 name='promptsource',29 version='0.2.3',30 url='https://github.com/bigscience-workshop/promptsource.git',31 author='BigScience - Prompt Engineering Working Group',32 author_email='sbach@cs.brown.edu,victor@huggingface.co',33 python_requires='>=3.7,<3.10',34 install_requires=requirements,35 classifiers=[36 'Development Status :: 2 - Pre-Alpha',37 'Intended Audience :: Developers',38 'License :: OSI Approved :: Apache Software License',39 'Natural Language :: English',40 'Programming Language :: Python :: 3',41 'Programming Language :: Python :: 3.7',42 'Programming Language :: Python :: 3.8',43 'Programming Language :: Python :: 3.9',44 ],45 description='An Integrated Development Environment and Repository for Natural Language Prompts.',46 packages=find_packages(),47 license="Apache Software License 2.0",48 long_description=readme,49 long_description_content_type="text/markdown",50 package_data={"": [51 "templates/*/*.yaml",52 "templates/*/*/*.yaml",53 ]}54)55 