-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (35 loc) · 1.33 KB
/
setup.py
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
# -*- coding: utf-8 -*-
try:
from ez_setup import use_setuptools
use_setuptools()
except:
pass
from setuptools import setup, find_packages
import sys
_requires = ["creole", "html2text"]
setup(
name = 'mw2md',
version = '0.0.2',
description = 'MediaWiki to MarkDown syntax translation',
long_description = 'Simple library to translate between those common docuemntation syntaxes.',
license = 'Apache License, Version 2.0', #Should be removed by PEP 314
author = "Sergio Fernández",
author_email = "[email protected]",
url = 'http://bitbucket.org/wikier/mw2md',
platforms = ['any'], #Should be removed by PEP 314
packages = ['mw2md'],
requires = _requires, # Used by distutils to create metadata PKG-INFO
install_requires = _requires, #Used by setuptools to install the dependencies
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords = 'python mediawiki markdown',
use_2to3 = True,
#requires_python = '>=2.5', # Future in PEP 345
#scripts = ['ez_setup.py']
)