-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (35 loc) · 1.08 KB
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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
with open(path.join(here, "requirements.txt"), encoding="utf-8") as f:
requires = [req.strip() for req in f if req]
setup(
name="llm_behavior_adaptation",
version="0.0.1",
description="Research for LLM's persona understanding",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests*", "example*"]),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">3.9",
install_requires=requires,
extras_require={
"dev": [
"pytest>=6",
"flake8>=3.8",
"black>=20.8b1",
"isort>=5.6",
"autoflake>=1.4",
],
},
zip_safe=False,
entry_points={
"console_scripts": [],
},
)