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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mixpeek
3
- Version: 0.6.18
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.18
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
 
@@ -8,6 +8,7 @@ mixpeek/exceptions.py
8
8
  mixpeek.egg-info/PKG-INFO
9
9
  mixpeek.egg-info/SOURCES.txt
10
10
  mixpeek.egg-info/dependency_links.txt
11
+ mixpeek.egg-info/requires.txt
11
12
  mixpeek.egg-info/top_level.txt
12
13
  mixpeek/endpoints/__init__.py
13
14
  mixpeek/endpoints/connections.py
@@ -0,0 +1,2 @@
1
+ requests==2.32.3
2
+ pydantic==2.7.3
@@ -1,15 +1,12 @@
1
1
  from setuptools import setup, find_packages
2
2
 
3
- # Function to read the requirements.txt file
4
- def parse_requirements(filename):
5
- with open(filename, 'r') as file:
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.18',
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