File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- from os .path import abspath , dirname , join , isfile
1+ from os .path import abspath , dirname , join
22from os import environ
33from setuptools import find_packages , setup
4- import sys
54
65this_dir = abspath (dirname (__file__ ))
76with open (join (this_dir , "README.md" ), encoding = "utf-8" ) as file :
109
1110setup (
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" ,
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" ,
You can’t perform that action at this time.
0 commit comments