-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1000 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='gkeep-sync',
version='0.0.1',
author='Kamen Kanev',
author_email='[email protected]',
license='MIT',
description='A Service that syncs your Google Keep notes with your local file system',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kanevk/gkeep-files-sync',
packages=setuptools.find_packages(),
scripts=['bin/gkeep_sync', 'bin/gkeep_update_config'],
keywords=['google keep', 'keep', 'notes'],
install_requires=[
'watchdog',
'gkeepapi'
],
download_url='https://github.com/kanevk/gkeep-files-sync/archive/0.0.1.tar.gz',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: MacOS',
],
python_requires='>=3.6',
)