forked from kynan/dokuwikixmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (22 loc) · 841 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
# dokuwikixmlrpc's setup.py
from distutils.core import setup
setup(
name = "dokuwikixmlrpc",
version = "2010-07-19",
description = "DokuWiki XML-RPC module.",
py_modules = ["dokuwikixmlrpc"],
author = "Michael Klier",
author_email = "[email protected]",
url = "http://github.com/chimeric/dokuwikixmlrpc",
download_url = "http://github.com/downloads/chimeric/dokuwikixmlrpc/dokuwikixmlrpc.tgz",
keyword = ["xmlrpc", "dokuwiki"],
classfiers = [
"Programming Language :: Python",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)
# vim:ts=4:sw=4:et:enc=utf-8: