view setup.py @ 29:8801b7fc6010

Improve setup.py
author Lewin Bormann <lewin@lewin-bormann.info>
date Mon, 14 Sep 2020 11:16:31 +0200
parents 520fa4e1c537
children
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=[
            'arguments',
            'future',
            'consoleprinter',
            'google-api-core',
            'google-api-python-client',
            'google-auth',
            'google-auth-httplib2',
            'google-auth-oauthlib',
            'python-dateutil',
            'pyyaml',
            'requests-oauthlib',
        ])