-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
36 lines (31 loc) · 1.08 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
#! /usr/bin/env python
from setuptools import setup, find_packages
import sys
import os
VERSION = '0.2.02'
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'],
entry_points={
"console_scripts": ['flickrsmartsync = flickrsmartsync:main'],
},
)
if __name__ == '__main__':
main()