forked from owncloud/pyocclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.25 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
# -*- coding: utf-8 -*-
#
# vim: expandtab shiftwidth=4 softtabstop=4
#
from setuptools import setup
import io
version = '0.6'
long_description = (
io.open('README.rst', encoding='utf-8').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
io.open('docs/source/CONTRIBUTORS.rst', encoding='utf-8').read()
+ '\n' +
io.open('CHANGES.rst', encoding='utf-8').read()
+ '\n')
setup(
name='pyocclient',
version=version,
author='Vincent Petry',
author_email='pvince81@owncloud.com',
packages=['owncloud', 'owncloud.test'],
url='https://github.com/owncloud/pyocclient/',
license='LICENSE.txt',
description='Python client library for ownCloud',
long_description=long_description,
install_requires=[
"requests >= 2.0.1",
"six"
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License'
]
)