-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (26 loc) · 881 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
from setuptools import find_packages, setup
project_name = "llmapps"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name=project_name,
packages=find_packages("."), # [project_name, f"{project_name}.app", f"{project_name}.controller"],
#package_dir={project_name: "src"},
version="0.1.0",
description="LLM Applications Factory",
entry_points={
'console_scripts': [
# if you have any scripts in your package, list them here
'llmapps=llmapps.main:main'
],
},
author="Yaron",
author_email="[email protected]",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.9",
install_requires=requirements,
)