This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 142
/
setup.py
55 lines (52 loc) · 1.7 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
55
#!/usr/bin/python3
import os
from setuptools import setup, find_packages
try:
with open(os.path.join(os.path.dirname(__file__), '..', 'README.md')) as f:
readme = f.read()
except IOError:
readme = 'Please read README.md for more details'
setup(
name='onedrive-d',
version='1.1.0dev',
author='Xiangyu Bu',
author_email='xybu92@live.com',
license='GPLv3',
keywords=[
'onedrive', 'microsoft', 'daemon', 'live', 'liveconnect',
'cloud', 'storage', 'storage provider', 'file hosting', 'skydrive'
],
url='http://github.com/xybu/onedrive-d',
description='A Microsoft OneDrive Desktop client program for Linux.',
long_description=readme,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: X11 Applications',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: System :: Archiving',
'Topic :: System :: Filesystems',
'Topic :: Utilities'],
install_requires=[
'requests', 'urllib3', 'certifi', 'send2trash', 'daemonocle'],
packages=find_packages(),
include_package_data=True,
package_data={'onedrive_d': ['res/*.png', 'res/*.ini']},
# scripts=['daemon/onedrive-daemon','daemon/onedrive-utils'],
exclude_package_data={'': ['README.*', 'install.sh']},
entry_points={
'console_scripts': [
'onedrive-d = onedrive_d.od_main:main',
'onedrive-pref = onedrive_d.od_pref:main'
]
}
)