-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
38 lines (36 loc) · 1.05 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
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import csync.version as ver
setup(
name = "pyOwnCloud",
version = ver.version.asString,
packages = find_packages(),
package_data = {
'csync': [ 'version.dat'],
},
entry_points = {
'console_scripts': [
'oclient = csync.csync:main',
],
},
extras_require = {
'keyring': ["keyring"],
},
author = 'pyOwnCloud Team',
author_email = '[email protected]',
license = 'GPLv2',
url = "https://github.com/csawyerYumaed/pyOwnCloud",
download_url = "https://github.com/csawyerYumaed/pyOwnCloud/tag/"+ver.version.asString,
description = 'ownCloud CLI client- connect your ownCloud with python.',
long_description = open('README.md').read(),
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Topic :: Communications :: File Sharing",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
]
)
# vim: noet:ts=4:sw=4:sts=4