-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.15 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.15 KB
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
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
MediaWiki Syntax to HTML
:copyright: (c) 2012 by Raimon Esteve.
:license: GPLv3, see LICENSE for more details
A simple to use python library to access convert wiki syntax
to HTML
'''
from setuptools import setup
import mediawiki
setup(
name = 'mediawiki',
version=mediawiki.__version__,
url='http://github.com/zikzakmedia/python-mediawiki',
license='GPLv3+',
author='Raimon Esteve',
author_email='zikzak@zikzakmedia.com',
description='MediaWiki Syntax to HTML',
packages=[
'mediawiki',
'mediawiki.wikimarkup',
'mediawiki.doc',
],
zip_safe=False,
platforms='any',
install_requires=[
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)