We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e31e6 commit 7f1ac3eCopy full SHA for 7f1ac3e
setup.py
@@ -1,5 +1,3 @@
1
-import os
2
-import subprocess
3
import re
4
from setuptools import find_packages, setup
5
@@ -22,7 +20,6 @@ def make_requirements_list(file="requirements.txt", only_regular=True):
22
20
:param only_regular: remove rows with /, #, space or empty
23
21
:return:
24
"""
25
-
26
with open(file) as f:
27
lines = f.read().splitlines()
28
if only_regular:
@@ -38,7 +35,7 @@ def make_requirements_list(file="requirements.txt", only_regular=True):
38
35
python_requires=">=3.0",
39
36
name=f"{PACKAGE_NAME}",
40
37
description="Mindee API helper library for python",
41
- version="v1.0.0",
+ version="v1.0.1",
42
long_description=long_description,
43
long_description_content_type="text/markdown",
44
url=GIT_URL,
0 commit comments