-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
31 lines (30 loc) · 1.01 KB
/
setup.py
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
from setuptools import find_packages, setup
setup(
name="ideo",
version="0.2.1",
author="yihong0618",
description="High quality image generation by ideogram.ai. Reverse engineered API.",
url="https://github.com/yihong0618/IdeoImageCreator",
project_urls={
"Bug Report": "https://github.com/yihong0618/IdeoImageCreator/issues/new",
},
install_requires=[
"curl_cffi",
"requests",
"fake-useragent",
],
packages=find_packages(),
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": ["ideo = ideo.ideo:main"],
},
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)