forked from xybu/onedrive-d-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·55 lines (44 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
try:
readme = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
except IOError:
readme = 'Please read README.md for more details'
setup(
name='onedrive-d',
version='0.8',
author='Xiangyu Bu',
author_email='xybu92@live.com',
license='MIT',
keywords=[ 'skydrive', 'onedrive', 'microsoft', 'daemon', 'live', 'liveconnect',
'cloud', 'storage', 'storage provider', 'file hosting' ],
url='http://github.com/xybu92/onedrive-d',
description='A Microsoft OneDrive client that works for Ubuntu-based Linux',
long_description=readme,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: System :: Archiving',
'Topic :: System :: Filesystems',
'Topic :: Utilities'],
install_requires = ['requests', 'urllib3', 'PyYAML', 'python-onedrive'],
packages=find_packages(),
include_package_data=True,
package_data={'onedrive_d': ['res/*.png']},
#scripts=['daemon/onedrive-daemon','daemon/onedrive-utils'],
exclude_package_data={'': ['README.*']},
entry_points = dict(console_scripts=[
'onedrive-d = onedrive_d.daemon:main',
'onedrive-prefs = onedrive_d.prefs:main'])
)