-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (58 loc) · 1.94 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python3
'''
setuptools-based setup module; see:
- https://packaging.python.org/guides/distributing-packages-using-setuptools/
- https://github.com/pypa/sampleproject
'''
from setuptools import find_packages
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='imgtools-cli',
version='1.0.8',
url='https://github.com/3ee-Games/image-tools',
author='3ee Games',
author_email='ryguy@3ee.com',
packages=find_packages(),
description='a command line interface for preparing image models',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development',
],
keywords='image-downloader, image-scraper, heic, hypernetwork, heic-to-png, stable-diffusion, textual-inversion, dreambooth, image-chunks, image-chunker ',
package_data={
},
install_requires=[
'beautifulsoup4==4.11.1',
'urllib3==1.26.13',
'Pillow==9.3.0',
'argparse-ext',
'pillow-heif==0.9.0',
'opencv-python',
'requests'
],
extras_require={
},
entry_points={
'console_scripts': [
'imgtools=imgtools_cli.__main__:main',
],
},
project_urls={
'Homepage': 'https://3ee.com',
'Suppport': 'https://ko-fi.com/3eegames',
'Source': 'https://github.com/3ee-Games/image-tools',
'Tracker': 'https://github.com/3ee-Games/image-tools/issues',
},
)