forked from hardikvasa/google-images-download
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
78 lines (74 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
"""setup."""
# pylint: disable=invalid-name, import-error
from setuptools import setup, find_packages
# Get the long description from the README file
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
test_deps = [
'flake8>=3.3.0',
'pylint>=1.7.4',
'tox>=2.7.0',
'vcrpy>=1.11.1',
]
dev_deps = test_deps + [
'flask-shell-ipython>=0.3.0',
]
setup(
name='gbooru-images-download',
description="Simple booru for hydrus",
version="0.0.1",
long_description=long_description,
url="https://github.com/rachmadaniHaryono/gbooru-images-download",
# uncomment if tarball is provided on github
# download_url='https://github.com/"
# "rachmadaniHaryono/google-images-download/tarball/' + __version__,
license='MIT',
zip_safe=True,
install_requires=[
'appdirs>=1.4.3',
'beautifulsoup4>=4.6.0',
'click>=6.7',
'fake-useragent>=0.1.10',
'Flask-Admin>=1.5.0',
'Flask-Migrate>=2.1.1',
'flask-sqlalchemy>=2.3.2',
'Flask-WTF>=0.14.2',
'Flask>=0.12.2',
'furl>=1.0.1',
'humanize>=0.5.1',
'lxml>=4.1.1',
'pillow>=5.0.0',
'requests-html>=0.9.0',
'requests>=2.18.4',
'send2trash>=1.5.0',
'SQLAlchemy-Utils>=0.32.18',
'sqlalchemy>=1.2.4',
'structlog>=18.1.0',
'Yapsy>=1.11.223',
],
tests_require=test_deps,
extras_require={
'test': test_deps,
'dev': dev_deps,
},
setup_requires=['pytest-runner'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python',
],
keywords="booru hydrus image downloader",
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
author='Rachmadani Haryono',
author_email="foreturiga@gmail.com",
entry_points={
'console_scripts': [
'gbooru-images-download-server = gbooru_images_download.server:cli'
]},
)