forked from beaufour/flickr-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 855 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='flickr_download',
version='0.2.21',
description='Download photos from Flickr',
long_description=readme(),
url='https://github.com/beaufour/flickr-download.git',
author='Allan Beaufour, Marian Such',
author_email='allan@beaufour.dk, toxygen1@gmail.com',
license='Apache',
packages=['flickr_download'],
install_requires=[
'flickr_api==0.5',
'python-dateutil == 1.5',
'PyYAML>=4.2b1',
],
test_suite='tests.get_tests',
tests_require=[
'unittest2==1.1.0',
'attrdict==0.5.1',
],
entry_points={
'console_scripts': ['flickr_download=flickr_download.flick_download:main'],
},
zip_safe=False)