Skip to content

Commit 57178f9

Browse files
authored
Update setup.py
1 parent 4ed2305 commit 57178f9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from os.path import abspath, dirname, join, isfile
1+
from os.path import abspath, dirname, join
22
from os import environ
33
from setuptools import find_packages, setup
4-
import sys
54

65
this_dir = abspath(dirname(__file__))
76
with open(join(this_dir, "README.md"), encoding="utf-8") as file:
@@ -10,10 +9,10 @@
109

1110
setup(
1211
name="dallecli",
13-
python_requires=">3.5",
12+
python_requires=">3.8",
1413
options={"bdist_wheel": {"universal": "1"}},
15-
version="1.3.0",
16-
description="A command line application to help wrap the OpenAI Dalle api and other utilities.",
14+
version="2.0.0",
15+
description="A command line application to help wrap the OpenAI Dalle 3 api and other utilities.",
1716
long_description=long_description,
1817
long_description_content_type="text/markdown",
1918
url="https://github.com/raiyanyahya/dallecli",
@@ -30,8 +29,9 @@
3029
],
3130
packages=find_packages(),
3231
install_requires=[
32+
"requests==2.28.2",
3333
"click==8.1.3",
34-
"openai==0.27.8",
34+
"openai==1.6.1",
3535
"rich==13.4.2",
3636
"idna",
3737
"pillow==9.4.0",

0 commit comments

Comments
 (0)