-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
32 lines (30 loc) · 917 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
30
31
32
from setuptools import setup, find_packages
# Read the content of your README file
with open("README_PyPi.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='aimon',
python_requires='>3.8.0',
packages=find_packages(),
version="0.9.0",
install_requires=[
"annotated-types==0.6.0",
"anyio==4.4.0",
"certifi==2023.7.22",
"distro==1.8.0",
"exceptiongroup==1.2.2",
"h11==0.14.0",
"httpcore==1.0.2",
"httpx==0.28.1",
"idna==3.4",
"pydantic==2.10.3",
"pydantic-core==2.27.1",
"sniffio==1.3.0",
"typing-extensions==4.12.2"
],
author='AIMon',
author_email='info@aimon.ai',
description='The AIMon SDK that is used to interact with the AIMon API and the product.',
long_description=long_description,
long_description_content_type="text/markdown",
)