-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
49 lines (46 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python2.7
# Copyright 2008-2013 semantics GmbH
# Written by Christian Heimes <[email protected]>
# Modified by Marcus Brinkmann <[email protected]>
try:
import setuptools
except ImportError:
from distutils.core import setup
else:
from setuptools import setup
setup_info = dict(
name="smc.mw",
version="0.3",
packages=["smc", "smc.mw"],
namespace_packages=["smc"],
zip_safe=True,
requires=["lxml", "grako"],
entry_points={
'console_scripts': [
'mw = smc.mw.tool:main',
]
},
author="semantics GmbH / Marcus Brinkmann",
author_email="[email protected]",
maintainer="Marcus Brinkmann",
maintainer_email="[email protected]",
url="https://github.com/lambdafu/smc.mw",
keywords="wiki mediawiki parser peg",
license="BSD",
description="MediaWiki-compatible parser for Python.",
long_description=open("README.rst").read(),
classifiers=(
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Topic :: Text Processing :: Markup",
),
)
setup(**setup_info)