This repository was archived by the owner on Oct 13, 2020. It is now read-only.
forked from hschauhan/gosync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.26 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.26 KB
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
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,
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 :: 2.7',
'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', 'pydrive', 'watchdog'],
entry_points={
'console_scripts':[
'GoSync=GoSync.GoSync:main',
],
},
)