git.fiddlerwoaroof.com
Browse code

Adding distutils support

Ed L authored on 01/06/2011 02:18:47
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,22 @@
1
+from distutils.core import setup
2
+
3
+VERSION = "0.99a"
4
+URLBASE = "https://github.com/NCMI/jsonrpc"
5
+URLMAP = {
6
+	"daily": "tarball/master"
7
+}
8
+
9
+if __name__ == "__main__":
10
+	setup(
11
+		name='jsonrpc',
12
+		version=VERSION,
13
+		description='A JSON-RPC 2.0 client-server library',
14
+		author='Edward Langley',
15
+		author_email='langleyedward@gmail.com',
16
+		url='https://github.com/NCMI/jsonrpc',
17
+		download_url="https://github.com/NCMI/jsonrpc/tarball/master",
18
+		packages=[
19
+			'jsonrpc'
20
+			],
21
+		scripts=[]
22
+		)