forked from arentoine/gosync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.35 KB
/
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
40
41
42
43
from GoSync.defines import *
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
###################################################################
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = APP_NAME,
version = APP_VERSION,
description = APP_DESCRIPTION,
long_description = long_description,
long_description_content_type="text/markdown",
url = APP_WEBSITE,
author = APP_DEVELOPER,
author_email = APP_DEVELOPER_EMAIL,
license='GPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='Google Drive client Linux Python',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_data={
'GoSync':['resources/*.png'],
},
install_requires=['google-api-python-client', 'google-auth-httplib2', 'google-auth-oauthlib', 'watchdog'],
entry_points={
'console_scripts':[
'GoSync=GoSync.GoSync:main',
],
},
)