-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 1.02 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
import sys
import setuptools
if sys.version_info < (3, 7):
sys.exit('Python>=3.7 is required by rl_prompt.')
setuptools.setup(
name="rl_prompt",
version='0.1.0',
url="https://github.com/mingkaid/rl-prompt",
author=("Mingkai Deng*, Jianyu Wang*, Cheng-Ping Hsieh*, Yihan Wang, "
"Han Guo, Tianmin Shu, Meng Song, Eric P. Xing, Zhiting Hu"),
description="RLPrompt: Optimizing Discrete Text Prompts With Reinforcement Learning",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='RL Prompt',
license='MIT',
packages=setuptools.find_packages(),
install_requires=open("requirements.txt", "r").read().split(),
include_package_data=True,
python_requires='>=3.7',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)