forked from owncloud/pyocclient
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
46 lines (43 loc) · 1.28 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.7'
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='pyncclient',
version=version,
author='Marco Nastasi',
author_email='m.nastasi@pragmaticminds.de',
packages=['nextcloud_client', 'nextcloud_client.test'],
url='https://github.com/pragmaticindustries/pyncclient',
license='LICENSE.txt',
description='Python client library for nextCloud',
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'
]
)