samwell commited on
Commit
94f890d
·
verified ·
1 Parent(s): 6240e74

Add setup.py to install fake cosmos_guardrail

Browse files
Files changed (1) hide show
  1. setup.py +7 -0
setup.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="cosmos_guardrail",
5
+ version="0.1.0",
6
+ py_modules=["cosmos_guardrail"],
7
+ )