forked from gilesknap/gphotos-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (33 loc) · 1001 Bytes
/
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
37
38
39
#!/usr/bin/env python3
from setuptools import setup, find_packages, os
module_name = "gphotos-sync"
install_reqs = [
'exif',
'appdirs',
'requests_oauthlib',
'PyYaml',
'selenium'
]
if os.name == 'nt':
install_reqs.append('pywin32')
with open("README.rst", "rb") as f:
long_description = f.read().decode("utf-8")
setup(
name=module_name,
version='2.10.1',
python_requires='>=3.6',
license='MIT',
platforms=['Linux', 'Windows', 'Mac'],
description='Google Photos and Albums backup tool',
packages=find_packages(exclude=("tests.*", "tests", "etc.*", "etc")),
entry_points={
"console_scripts": ['gphotos-sync = gphotos.Main:main']
},
long_description=long_description,
install_requires=install_reqs,
package_data={'': ['gphotos/sql/gphotos_create.sql', 'LICENSE']},
include_package_data=True,
author='Giles Knap',
author_email='[email protected]',
url='https://github.com/gilesknap/gphotos-sync'
)