inspect-ai 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ Metadata-Version: 2.1
2
+ Name: inspect-ai
3
+ Version: 0.0.1
4
+ Summary: Project under active development. Placeholder description, will fill out soon.
@@ -0,0 +1,4 @@
1
+ Metadata-Version: 2.1
2
+ Name: inspect-ai
3
+ Version: 0.0.1
4
+ Summary: Project under active development. Placeholder description, will fill out soon.
@@ -0,0 +1,5 @@
1
+ setup.py
2
+ inspect_ai.egg-info/PKG-INFO
3
+ inspect_ai.egg-info/SOURCES.txt
4
+ inspect_ai.egg-info/dependency_links.txt
5
+ inspect_ai.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,8 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="inspect-ai",
5
+ version="0.0.1",
6
+ packages=find_packages(),
7
+ description="Project under active development. Placeholder description, will fill out soon.",
8
+ )