-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 656 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
import os
# Read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="agixtsdk",
version="0.0.82",
description="The AGiXT SDK for Python.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Josh XT",
author_email="josh@devxt.com",
packages=find_packages(),
python_requires=">=3.10",
install_requires=["requests", "openai", "pydub", "tiktoken", "pydantic", "pyotp"],
)