-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 999 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 999 Bytes
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 # type: ignore
# Read requirements.txt and use it for the install_requires parameter
with open("requirements.txt") as f:
requirements_list = f.read().splitlines()
setup(
name="k-llms",
version="0.0.56",
author="Retab",
author_email="contact@retab.com",
description="Retab official python library",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/retab-dev/retab",
project_urls={"Team website": "https://retab.com"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Intended Audience :: Science/Research",
],
packages=find_packages(),
python_requires=">=3.6",
install_requires=requirements_list,
include_package_data=True,
package_data={"k_llms": ["**/*.yaml"]},
)