forked from preset-io/promptimize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 899 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
from setuptools import setup, find_packages
# Read the contents of the requirements.txt file
with open("requirements.txt") as f:
requirements = f.read().splitlines()
# Read the contents of the README.md file
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
setup(
name="promptimize",
version="0.2.0",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
entry_points={
"console_scripts": [
"promptimize=promptimize:cli",
"p9e=promptimize:cli",
],
},
author="Maxime Beauchemin",
author_email="[email protected]",
description="A python toolkit to generate and evaluate prompts for GPT at scale",
long_description=readme,
long_description_content_type="text/markdown",
license="Apache License, Version 2.0",
license_file="LICENSE",
)