-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·62 lines (56 loc) · 1.89 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
from setuptools import setup, find_packages
from codecs import open
from os import path
__version__ = '1.0.9.4'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
install_requires = [
"beautifulsoup4>=4.10.0, <5.0",
"certifi>=2023.7.22, <2024",
"chardet>=4.0.0, <5.0",
"dataclasses>=0.6, <1.0",
"dataclasses-json>=0.5.6, <1.0",
"idna>=3.3, <4.0",
"lxml>=4.9.1, <5.0",
"marshmallow>=3.2, <4.0",
"marshmallow-enum>=1.5.1, <2.0",
"mypy-extensions>=0.4.3, <1.0",
"pyopenssl>=23.0.0, <24",
"requests~=2.31.0, <3.0",
"selenium>=4.0.0, <5.0",
"selenium-wire>=5.1.0, <=5.1.0",
"soupsieve>=2.1, <3.0",
"stringcase>=1.2.0, <2.0",
"typing>=3.7.4, <4.0",
"typing-extensions>=3.10.0.2, <4.0",
"typing-inspect>=0.6.0, <1.0",
"urllib3>=1.26.7, <2.0"
]
setup(
name='yandex2lightroom',
packages=['yandex2lightroom'],
version=__version__,
license='MIT',
description="Python Script to download images from Yandex.Images for the use in Adobe Lightroom.",
long_description=long_description,
long_description_content_type='text/markdown',
author='Dieter Stockhausen',
author_email='[email protected]',
url='https://github.com/sto3014/yandex2lightroom-git',
download_url=f'https://github.com/sto3014/yandex2lightroom-git/archive/main.zip',
keywords='yandex images download save terminal command-line scrapper lightroom',
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
],
entry_points={
"console_scripts": [
'yandex2lightroom = yandex2lightroom:run_main'
]
}
)