-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.32 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.32 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
from setuptools import setup
# access readme for long description
def readme():
with open('README.md') as f_in:
return f_in.read()
setup(
name='drive_sync', # name of the program
version='1.222', # current version
description='GDrive_Sync is an automatic folder syncing client for Google Drive',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX :: Linux',
'Topic :: Utilities',
],
keywords='google-drive GDrive automatic sync GDrive manager',
url='http://github.com/thealphadollar/GDrive_Sync', # link to repository
author='thealphadollar',
author_email='shivam.cs.iit.kgp@gmail.com',
license='MIT',
packages=['gdrive_sync'], # folders to be included
include_package_data=True,
install_requires=[
'pydrive',
'python-crontab',
'future',
'pyperclip'
],
dependency_links=[], # add github links of dependencies not present in pypi but have a setup file
entry_points={
'console_scripts': ['drive_sync=gdrive_sync.main:main']
},
zip_safe=False)