view setup.py @ 33:81119b44f4c7 tip

Close this head
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 15 Oct 2020 22:33:09 +0200
parents cebda502c732
children 8801b7fc6010
line wrap: on
line source

#!/usr/bin/env python3

from setuptools import setup

setup(
        name='photosync',
        version='0.1',
        description='Download and organize media from Google Photos',
        url='https://github.com/dermesser/photosync',
        author='Lewin Bormann <lbo@spheniscida.de>',
        author_email='lbo@spheniscida.de',
        license='MIT',
        scripts=['photosync.py'],
        install_requires=[
            'google-api-python-client',
            'google-auth',
            'google-auth-httplib2',
            'google-auth-oauthlib',
            'python-dateutil',
            'arguments',
            'future',
            'pyyaml',
            'consoleprinter',
        ])