-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (42 loc) · 1.41 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import re
from pathlib import Path
from setuptools import find_packages, setup
# Read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "readme.md").read_text()
# Extract the version from the module file
def get_version():
version_file = this_directory / "textllm.py"
with open(version_file, "r") as f:
for line in f:
match = re.match(r"^__version__ = ['\"]([^'\"]*)['\"]", line)
if match:
return match.group(1)
raise RuntimeError("Version not found in textllm.py")
setup(
name="textllm", # The name used by pip
version=get_version(),
author="Justin Winokur",
author_email="Jwink3101@users.noreply.github.com",
description="Simple text file based interface to LLMs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Jwink3101/textllm",
packages=find_packages(),
py_modules=["textllm"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8", # Specify the Python version compatibility
install_requires=[
"python-dotenv",
"langchain",
],
entry_points={
"console_scripts": [
"textllm=textllm:cli", # Expose the CLI
],
},
)