-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 778 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
import setuptools
setuptools.setup(
name = 'dokuwiki',
version = '1.3.3',
author = 'François Ménabé',
author_email = 'francois.menabe@gmail.com',
url = 'http://python-dokuwiki.readthedocs.org/en/latest/',
download_url='https://github.com/fmenabe/python-dokuwiki',
license='MIT License',
description = 'Manage DokuWiki via XML-RPC API.',
long_description=open('README.rst').read(),
keywords=['xmlrpc', 'dokuwiki'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
py_modules = ['dokuwiki'],
)