-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·53 lines (47 loc) · 1.59 KB
/
setup.py
File metadata and controls
executable file
·53 lines (47 loc) · 1.59 KB
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
47
48
49
50
51
52
53
"""
The rpctools package provides client libraries for working with RPC services
with enhanced SSL support.
"""
import re
import os.path
import warnings
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
version = '0.3.2'
long_description = """
The rpctools package provides client libraries for working with RPC services
with enhanced SSL support.
Currently the only protocol implemented is JSON-RPC. The enhanced SSL
support is simply that these libraries can present client certificates
for authentication and can be set up to require a trusted SSL connection with
the server (validating CA and hostname matches).
"""
pkg_name = 'rpctools'
setup(
name=pkg_name,
version=version,
description=__doc__,
long_description=long_description,
keywords='jsonrpc json-rpc rpc client ssl',
license='Apache',
packages=find_packages(exclude=['tests', 'ez_setup']),
include_package_data=True,
zip_safe=True,
author='Hans Lellelid',
author_email='hans@xmpl.org',
url='http://github.com/appliedsec/rpctools',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)