-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·39 lines (34 loc) · 1.17 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
#!/usr/bin/env python
from setuptools import setup
import os
version='1.1'
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), "rb") as f:
long_description = f.read().decode("UTF-8")
setup(
name='backup_all_my_flickr_photos',
version=version,
description="A script to download all photos and videos in your Flickr account",
long_description=long_description,
long_description_content_type='text/markdown',
author="David D Lowe",
author_email="[email protected]",
url="https://github.com/Flimm/backup-all-my-flickr-photos",
scripts=['bin/backup-all-my-flickr-photos'],
install_requires=[
'flickr_api',
'humanfriendly',
],
license='bsd',
project_urls={
'GitHub': 'https://github.com/Flimm/backup-all-my-flickr-photos',
'Change log': 'https://github.com/Flimm/backup-all-my-flickr-photos/blob/master/CHANGELOG.md',
},
python_requires='>=3.3, <4',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Environment :: Console',
],
)