view setup.py @ 25:59b608562a36

Make photosync pip-installable
author Lewin Bormann <lbo@spheniscida.de>
date Tue, 05 Nov 2019 18:22:32 +0100
parents bf3b532931ba
children cebda502c732
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-httplib2',
            'google-auth-oauthlib',
            'python-dateutil',
            'arguments',
            'future',
            'pyyaml',
            'consoleprinter',
        ])