-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 793 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 793 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
#!/usr/bin/env python
"""
PyAI - The Pandas of AI Agents
=================================
Backwards-compatible setup.py for pip install.
Configuration is primarily in pyproject.toml.
Installation:
pip install . # Basic install
pip install .[openai] # With OpenAI
pip install .[azure] # With Azure
pip install .[all] # Everything
pip install -e .[dev] # Development mode
"""
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
packages=find_packages(exclude=["tests*", "examples*", "docs*"]),
package_data={
"pyai": ["py.typed", "*.pyi", "README.md", "**/README.md"],
},
include_package_data=True,
zip_safe=False,
)