aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2008-12-19 23:09:25 +0100
committerWojciech Polak <polak@gnu.org>2008-12-19 23:09:25 +0100
commit86ee544f442aa3c4a0516a620890ec64de0770cc (patch)
tree5037ce55f7d1572873447f818ba39dec83d2ef5c
parent69940b25ee56d951264b738f7e5452ae06fcf738 (diff)
downloadwit-86ee544f442aa3c4a0516a620890ec64de0770cc.tar.gz
wit-86ee544f442aa3c4a0516a620890ec64de0770cc.tar.bz2
* setup.py: New file.
-rw-r--r--setup.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..a964a10
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,40 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# Copyright (C) 2008 Sergey Poznyakoff
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+from distutils.core import setup
+import wikimarkup
+
+setup(name='wiki2x',
+ version='0.1',
+ author='Sergey Poznyakoff',
+ author_email='gray@gnu.org.ua',
+ url='http://gray.gnu.org.ua/',
+ package_dir = {'wiki2x': ''},
+ packages=['wiki2x'],
+ license='GPL License',
+ description='A wiki markup converter.',
+ platforms=['any'],
+ classifiers=[
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: GNU General Public License (GPL)',
+ 'Operating System :: OS Independent',
+ 'Programming Language :: Python',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Topic :: Text Processing :: Markup'
+ ]
+)

Return to:

Send suggestions and report system problems to the System administrator.