~oubiwann/txjsonrpc/0.0.5

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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup

version = open('VERSION').read().strip()

setup(name="Twisted-JSONRPC",
    version=version,
    description="Twisted JSON-RPC servers and clients.",
    author="Duncan McGreggor",
    author_email="duncan@adytum.us",
    url="http://projects.adytum.us/tracs/JSON-RPC",
    license="BSD",
    long_description='''
        Twisted JSON-RPC servers and clients.
        ''',
    packages=[
        'adytum',
        'adytum.twisted',
        'adytum.twisted.protocols',
        'adytum.twisted.web',
        'adytum.twisted.web2',
    ],
    package_dir = {
        'adytum': 'adytum',
    },
    namespace_packages = ['adytum', 'adytum.twisted'],
    classifiers = [f.strip() for f in """
    """.splitlines() if f.strip()],

)