forked from HoverHell/RedditImageGrab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (37 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
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# coding: utf8
import os
from setuptools import setup
here = os.path.dirname(__file__)
with open(os.path.join(here, 'readme.md')) as _fo:
LONG_DESCRIPTION = _fo.read()
setup_kwargs = dict(
name='redditdownload',
version='1.5',
description='', ## XX
long_description=LONG_DESCRIPTION,
# classifiers=[],
# keywords='...,...',
author='HoverHell',
author_email='hoverhell@gmail.com',
url='https://github.com/HoverHell/RedditImageGrab',
packages=['redditdownload'],
entry_points={
'console_scripts': [
'redditdl.py = redditdownload.redditdownload:main',
],
},
install_requires=[
# Actually, most of the dependencies are optional.
],
extras_require={
'recommended': [
'beautifulsoup4', 'lxml', 'html5lib',
'requests',
'Pillow', 'python-magic',
'pyaux', 'yaml', 'ipython', 'atomicfile',
],
}
)
if __name__ == '__main__':
setup(**setup_kwargs)