-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.31 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.31 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
from setuptools import setup, find_packages
setup(
name="pyshackle",
version="1.0.0",
description="A lightweight, framework-agnostic runtime circuit breaker for LLM agents.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Dante Bullock",
author_email="docspoc101@gmail.com",
license="AGPL-3.0",
url="https://github.com/Fame510/SHACKLE",
project_urls={
"Bug Reports": "https://github.com/Fame510/SHACKLE/issues",
"Commercial Licensing": "https://github.com/Fame510/SHACKLE/blob/main/README.md#-author--license",
},
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"rich>=13.0.0",
"pyyaml>=6.0.0",
],
extras_require={
"dev": ["pytest>=7.0.0", "pytest-asyncio>=0.23.0"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 (AGPLv3)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)