-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 781 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 781 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
30
31
from setuptools import setup, find_packages
import taskingai
NAME = "taskingai"
VERSION = taskingai.__version__
REQUIRES = [
"certifi>=14.05.14",
"six>=1.10",
"python_dateutil>=2.5.3",
"setuptools>=21.0.0",
"httpx>=0.23.0",
"pydantic>=2.5.0",
]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name=NAME,
version=VERSION,
description="TaskingAI",
author_email="support@tasking.ai",
url="https://www.tasking.ai",
keywords=["TaskingAI", "LLM", "AI"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "test.*", "examples", "examples.*"]),
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
)