-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.11 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from os.path import abspath, dirname, join
from os import environ
from setuptools import find_packages, setup
this_dir = abspath(dirname(__file__))
with open(join(this_dir, "README.md"), encoding="utf-8") as file:
long_description = file.read()
setup(
name="dallecli",
python_requires=">3.8",
options={"bdist_wheel": {"universal": "1"}},
version="2.2.0",
description="A command line application to help wrap the OpenAI Dalle 3 api and other utilities.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/raiyanyahya/dallecli",
author="Raiyan Yahya",
license="MIT",
author_email="raiyanyahyadeveloper@gmail.com",
keywords=[
"cli",
"developer tools",
"productivity",
"openai",
"generative art",
"ai",
],
packages=find_packages(),
install_requires=[
"requests==2.31.0",
"click==8.1.3",
"openai==1.6.1",
"rich==13.4.2",
"idna",
"pillow==10.0.1",
],
entry_points={"console_scripts": ["dallecli=dallecli.cli:cli"]},
)