synth-ai 0.0.0.dev1__tar.gz → 0.0.0.dev2__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.

Potentially problematic release.


This version of synth-ai might be problematic. Click here for more details.

@@ -1,9 +1,7 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: synth-ai
3
- Version: 0.0.0.dev1
3
+ Version: 0.0.0.dev2
4
4
  Summary: Software for aiding the best and multiplying the will.
5
- Home-page: https://github.com/synth-laboratories/synth-ai
6
- Author: Josh Purtell
7
5
  Author-email: Josh Purtell <josh@usesynth.ai>
8
6
  License: MIT License
9
7
 
@@ -46,8 +44,6 @@ Requires-Dist: together>=1.2.12
46
44
  Requires-Dist: langfuse>=2.56.1
47
45
  Requires-Dist: synth-sdk==0.3.0
48
46
  Requires-Dist: datasets>=3.2.0
49
- Dynamic: author
50
- Dynamic: home-page
51
47
 
52
48
  AI Infra used by the Synth AI Team
53
49
  ```
@@ -1,7 +1,6 @@
1
-
2
1
  [project]
3
2
  name = "synth-ai"
4
- version = "0.0.0.dev1"
3
+ version = "0.0.0.dev2"
5
4
  description = "Software for aiding the best and multiplying the will."
6
5
  readme = "README.md"
7
6
  authors = [{ name = "Josh Purtell", email = "josh@usesynth.ai" }]
@@ -30,10 +29,14 @@ requires-python = ">=3.10"
30
29
  [project.urls]
31
30
  Homepage = "https://github.com/synth-laboratories/synth-ai"
32
31
 
33
- [tool.hatch.build.targets.wheel]
34
- packages = ["synht-ai"]
32
+ [build-system]
33
+ requires = ["setuptools>=61.0"]
34
+ build-backend = "setuptools.build_meta"
35
+
36
+ [tool.setuptools]
37
+ packages = ["synth_ai"]
38
+ package-dir = {"synth_ai" = "synth_ai"}
35
39
 
36
- [tool.hatch.upload.pypi]
37
- repository = "https://upload.pypi.org/legacy/"
38
- username = "__token__"
39
- password = "${PYPI_API_TOKEN}"
40
+ # Explicitly exclude test directories and files
41
+ [tool.setuptools.exclude-package-data]
42
+ "*" = ["tests/*", "public_tests/*", "private_tests/*", "dev/*"]
@@ -0,0 +1,7 @@
1
+ """
2
+ Synth AI - Software for aiding the best and multiplying the will.
3
+ """
4
+
5
+ from importlib.metadata import version
6
+
7
+ __version__ = version("synth-ai") # Gets version from installed package metadata
@@ -1,9 +1,7 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: synth-ai
3
- Version: 0.0.0.dev1
3
+ Version: 0.0.0.dev2
4
4
  Summary: Software for aiding the best and multiplying the will.
5
- Home-page: https://github.com/synth-laboratories/synth-ai
6
- Author: Josh Purtell
7
5
  Author-email: Josh Purtell <josh@usesynth.ai>
8
6
  License: MIT License
9
7
 
@@ -46,8 +44,6 @@ Requires-Dist: together>=1.2.12
46
44
  Requires-Dist: langfuse>=2.56.1
47
45
  Requires-Dist: synth-sdk==0.3.0
48
46
  Requires-Dist: datasets>=3.2.0
49
- Dynamic: author
50
- Dynamic: home-page
51
47
 
52
48
  AI Infra used by the Synth AI Team
53
49
  ```
@@ -1,7 +1,7 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- setup.py
4
+ synth_ai/__init__.py
5
5
  synth_ai.egg-info/PKG-INFO
6
6
  synth_ai.egg-info/SOURCES.txt
7
7
  synth_ai.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ synth_ai
@@ -1,24 +0,0 @@
1
- from setuptools import find_packages, setup
2
-
3
- setup(
4
- name="synth-ai",
5
- version="0.0.0.dev1",
6
- packages=find_packages(),
7
- install_requires=[
8
- "openai",
9
- "pydantic>=2.9.2",
10
- "diskcache",
11
- "backoff>=2.2.1",
12
- "anthropic>=0.34.2",
13
- "google>=3.0.0",
14
- "google-generativeai>=0.8.1",
15
- "together>=1.2.12",
16
- ],
17
- author="Josh Purtell",
18
- author_email="josh@usesynth.com",
19
- description="",
20
- long_description=open("README.md").read(),
21
- long_description_content_type="text/markdown",
22
- url="https://github.com/synth-laboratories/synth-ai",
23
- license="MIT",
24
- )
File without changes
File without changes
File without changes