mixpeek 0.6.18__tar.gz → 0.6.19__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.19}/PKG-INFO +1 -1
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek.egg-info/PKG-INFO +1 -1
- {mixpeek-0.6.18 → mixpeek-0.6.19}/setup.py +1 -8
- {mixpeek-0.6.18 → mixpeek-0.6.19}/MANIFEST.in +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/README.md +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/__init__.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/client.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/endpoints/__init__.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/endpoints/connections.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/endpoints/embed.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/endpoints/extract.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/endpoints/generate.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/endpoints/tools.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek/exceptions.py +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek.egg-info/SOURCES.txt +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek.egg-info/dependency_links.txt +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/mixpeek.egg-info/top_level.txt +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/requirements.txt +0 -0
- {mixpeek-0.6.18 → mixpeek-0.6.19}/setup.cfg +0 -0
@@ -1,15 +1,8 @@
|
|
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
|
9
|
-
|
10
3
|
setup(
|
11
4
|
name='mixpeek',
|
12
|
-
version='0.6.
|
5
|
+
version='0.6.19',
|
13
6
|
author='Ethan Steininger',
|
14
7
|
author_email='ethan@mixpeek.com',
|
15
8
|
description='Mixpeek Python SDK',
|
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
|
File without changes
|