-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 964 Bytes
/
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
from setuptools import setup
setup(
name='xmlrpcssl',
version='0.1.3',
author='Jonatan Dellagostin',
author_email='jdellagostin@gmail.com',
url='https://github.com/jonDel/xmlrpcssl',
packages=['xmlrpcssl','xmlrpcssl/handlers'],
license='GPLv3',
description='xmlrpc server with basic authentication and secured with ssl',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: System :: Systems Administration :: Authentication/Directory',
],
keywords='ssl secure https xmlrpc rpc xml ldap',
long_description=open('README.rst').read(),
install_requires=[
],
extras_require={
'ldap': ['python-ldap>=2.4'],
},
include_package_data=True,
zip_safe=False,
)