-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 785 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
31
32
import setuptools
def get_readme():
"""Fetch README from file."""
with open("README.md", "r") as f:
return f.read()
setuptools.setup(
name="persona_consistency",
version="0.0.1",
description="Evaluating the Consistency of LM Personas",
long_description=get_readme(),
long_description_content_type="text/markdown",
python_requires=">=3.8.0",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
install_requires=[
"openai",
"tqdm",
"numpy",
"matplotlib",
"pandas",
],
url="https://github.com/edmundmills/lm-persona-consistency]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
)