mixpeek 0.6.18__tar.gz → 0.6.20__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.
- {mixpeek-0.6.18 → mixpeek-0.6.20}/PKG-INFO +3 -1
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek.egg-info/PKG-INFO +3 -1
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek.egg-info/SOURCES.txt +1 -0
- mixpeek-0.6.20/mixpeek.egg-info/requires.txt +2 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/setup.py +5 -7
- {mixpeek-0.6.18 → mixpeek-0.6.20}/MANIFEST.in +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/README.md +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/__init__.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/client.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/endpoints/__init__.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/endpoints/connections.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/endpoints/embed.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/endpoints/extract.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/endpoints/generate.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/endpoints/tools.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek/exceptions.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek.egg-info/dependency_links.txt +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/mixpeek.egg-info/top_level.txt +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/requirements.txt +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.20}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mixpeek
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.20
|
4
4
|
Summary: Mixpeek Python SDK
|
5
5
|
Home-page: https://github.com/mixpeek/mixpeek-python
|
6
6
|
Author: Ethan Steininger
|
@@ -10,6 +10,8 @@ Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Requires-Python: >=3.6
|
12
12
|
Description-Content-Type: text/markdown
|
13
|
+
Requires-Dist: requests==2.32.3
|
14
|
+
Requires-Dist: pydantic==2.7.3
|
13
15
|
|
14
16
|
# Mixpeek SDK
|
15
17
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mixpeek
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.20
|
4
4
|
Summary: Mixpeek Python SDK
|
5
5
|
Home-page: https://github.com/mixpeek/mixpeek-python
|
6
6
|
Author: Ethan Steininger
|
@@ -10,6 +10,8 @@ Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Requires-Python: >=3.6
|
12
12
|
Description-Content-Type: text/markdown
|
13
|
+
Requires-Dist: requests==2.32.3
|
14
|
+
Requires-Dist: pydantic==2.7.3
|
13
15
|
|
14
16
|
# Mixpeek SDK
|
15
17
|
|
@@ -1,15 +1,12 @@
|
|
1
1
|
from setuptools import setup, find_packages
|
2
2
|
|
3
|
-
#
|
4
|
-
|
5
|
-
|
6
|
-
lines = file.readlines()
|
7
|
-
lines = [line.strip() for line in lines if line.strip() and not line.startswith('#')]
|
8
|
-
return lines
|
3
|
+
# Read the contents of your requirements.txt file
|
4
|
+
with open('requirements.txt') as f:
|
5
|
+
required = f.read().splitlines()
|
9
6
|
|
10
7
|
setup(
|
11
8
|
name='mixpeek',
|
12
|
-
version='0.6.
|
9
|
+
version='0.6.20',
|
13
10
|
author='Ethan Steininger',
|
14
11
|
author_email='ethan@mixpeek.com',
|
15
12
|
description='Mixpeek Python SDK',
|
@@ -17,6 +14,7 @@ setup(
|
|
17
14
|
long_description_content_type='text/markdown',
|
18
15
|
url='https://github.com/mixpeek/mixpeek-python',
|
19
16
|
packages=find_packages(),
|
17
|
+
install_requires=required,
|
20
18
|
classifiers=[
|
21
19
|
'Programming Language :: Python :: 3',
|
22
20
|
'License :: OSI Approved :: MIT License',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|