forked from faisalraja/flickrsmartsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.26 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
#! /usr/bin/env python
from setuptools import setup, find_packages
import sys
import os
VERSION = '0.2.01'
def main():
setup(name='flickrsmartsync',
version=VERSION,
description="Sync/backup your photos to flickr easily",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'
],
keywords='flickr backup photo sync',
author='Faisal Raja',
author_email='[email protected]',
url='https://github.com/faisalraja/flickrsmartsync',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'watchdog',
'IPTCInfo',
'six>=1.5.2',
'requests>=2.2.1',
'requests_oauthlib>=0.4.0',
'requests_toolbelt>=0.3.1',
],
entry_points={
"console_scripts": ['flickrsmartsync = flickrsmartsync:main'],
},
)
if __name__ == '__main__':
main()