-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.08 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
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup
VERSION = '0.6.0'
setup(name='ownSync',
version=VERSION,
description='Python ownCloud file sync utility',
author='Luke Wahlmeier',
author_email='[email protected]',
url='https://github.com/lwahlmeier/ownSync',
install_requires=['requests', 'argparse'],
license='BSD',
py_modules=['ownSyncUtils'],
scripts=['ownSync.py'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'Topic :: Internet',
'Natural Language :: English',
'Operating System :: POSIX',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='owncloud files sync sychronize',
download_url = 'https://github.com/lwahlmeier/ownSync/tarball/'+VERSION,
)