view setup.py @ 24:bf3b532931ba

Add shebangs to python scripts
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 11 Oct 2019 23:46:46 +0200
parents 2ec82615c664
children 59b608562a36
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',
        py_modules=['photosync'],
        install_requires=[
            'google-api-python-client',
            'google-auth-httplib2',
            'google-auth-oauthlib',
            'python-dateutil',
            'arguments',
            'future',
            'pyyaml',
            'consoleprinter',
        ])