-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (65 loc) · 2.4 KB
/
setup.py
File metadata and controls
69 lines (65 loc) · 2.4 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Base requirements
install_requires = [
"requests>=2.25.0",
"typing-extensions>=3.7.4; python_version<'3.8'",
]
# Optional dependencies
extras_require = {
"async": ["aiohttp>=3.8.0"],
"dev": [
"pytest>=6.0.0",
"pytest-asyncio>=0.18.0",
"black>=22.0.0",
"isort>=5.0.0",
"mypy>=0.950",
],
"all": ["aiohttp>=3.8.0"],
}
setup(
name="rax-ai",
version="1.0.0",
author="Raxcore Development Team",
author_email="dev@raxcore.com",
description="Official Python SDK for Rax AI Platform - AI API client with chat completions, streaming, and analytics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Raxcore-dev/rax-ai-python",
project_urls={
"Homepage": "https://ai.raxcore.dev",
"Documentation": "https://ai.raxcore.dev/docs",
"Repository": "https://github.com/Raxcore-dev/rax-ai-python",
"Issues": "https://github.com/Raxcore-dev/rax-ai-python/issues",
"Changelog": "https://github.com/Raxcore-dev/rax-ai-python/blob/main/CHANGELOG.md",
},
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Typing :: Typed",
],
python_requires=">=3.7",
install_requires=install_requires,
extras_require=extras_require,
keywords=[
"ai", "api", "sdk", "rax-ai", "raxcore", "chat", "completion",
"llm", "machine-learning", "artificial-intelligence", "python",
"async", "streaming", "analytics"
],
include_package_data=True,
zip_safe=False,
)