-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 855 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 855 Bytes
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
from setuptools import setup, find_packages
VERSION = '0.1-alpha'
DOWNLOAD_URL = ('https://github.com/harsimrans/DropboxSyncer/archive/'
'{}.zip'.format(VERSION))
REQUIRES = ['dropbox']
PACKAGES = find_packages(exclude=["*.tests", "*.tests.*", "tests.*",
"tests"])
add_keywords = dict(
entry_points={
'console_scripts': ['dsync=dropbox_sync.syncer:main'],
}, )
setup(
name='dropbox-sync',
version=VERSION,
license='MIT',
author='harsimran singh',
author_email='harsimransingh032@gmail.com',
download_url=DOWNLOAD_URL,
install_requires=REQUIRES,
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
url='https://github.com/harsimrans/DropboxSyncer',
description='Syncs dropbox folder mentioned realtime',
**add_keywords
)