forked from NickyReid/midjourney-image-downloader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 852 Bytes
/
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
32
import os
from setuptools import setup, find_packages
from io import open
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
if not os.path.isdir("jobs"):
os.makedirs("jobs")
setup(
name='midjourney-image-downloader',
version='0.0.1',
packages=find_packages(),
url='https://github.com/carloe/midjourney-image-downloader',
license='MIT',
author='Carlo Eugster',
author_email='[email protected]',
description='Download images from your Midjourney gallery',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
"requests",
"click",
],
entry_points={
'console_scripts': [
'mjdl=src.__main__:cli',
],
},
)