-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 872 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 872 Bytes
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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="flickrbackup",
version="0.12.6",
packages=find_packages(),
scripts=['flickrbackup.py'],
install_requires=['flickrapi', 'threadpool', 'python-dateutil', 'requests'],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '*.md'],
},
# metadata for upload to PyPI
author="Martin Aspeli",
author_email="optilude@gmail.com",
description="Flickr backup utility",
long_description=long_description,
long_description_content_type="text/x-rst",
license="BSD",
keywords="flickr backup",
url="http://github.com/optilude/flickrbackup",
)