forked from oubiwann/txjsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (28 loc) · 850 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
30
31
32
33
from setuptools import setup
from txjsonrpc.util import dist
setup(
name="txJSON-RPC",
version="0.5",
description="Code for creating Twisted JSON-RPC servers and clients.",
maintainer="Paul Hummer",
maintainer_email="[email protected]",
url="http://github.com/rockstar/txjsonrpc",
license="BSD, GPL",
packages=dist.findPackages('txjsonrpc'),
install_requires=['twisted', 'six'],
long_description=dist.catReST(
"docs/PRELUDE.txt",
"README",
"docs/DEPENDENCIES.txt",
"docs/INSTALL.txt",
"docs/USAGE.txt",
"TODO",
"docs/HISTORY.txt",
stop_on_errors=True,
out=True),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
],
)