|
| 1 | +#!/usr/bin/env python |
| 2 | +""" |
| 3 | +Github Links - A Python-Markdown Extension. |
| 4 | +
|
| 5 | +BSD License |
| 6 | +
|
| 7 | +Copyright (c) 2017 by Waylan Limberg. All rights reserved. |
| 8 | +
|
| 9 | +Redistribution and use in source and binary forms, with or without |
| 10 | +modification, are permitted provided that the following conditions are met: |
| 11 | +
|
| 12 | +* Redistributions of source code must retain the above copyright |
| 13 | + notice, this list of conditions and the following disclaimer. |
| 14 | +* Redistributions in binary form must reproduce the above copyright |
| 15 | + notice, this list of conditions and the following disclaimer in the |
| 16 | + documentation and/or other materials provided with the distribution. |
| 17 | +* Neither the name of HTMLTree nor the names of its contributors may be |
| 18 | + used to endorse or promote products derived from this software without |
| 19 | + specific prior written permission. |
| 20 | +
|
| 21 | +THIS SOFTWARE IS PROVIDED BY WAYLAN LIMBERG ''AS IS'' AND ANY |
| 22 | +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 23 | +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 24 | +DISCLAIMED. IN NO EVENT SHALL ANY CONTRIBUTORS TO Github-Links Extension |
| 25 | +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 26 | +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 27 | +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 28 | +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 29 | +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 30 | +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 31 | +POSSIBILITY OF SUCH DAMAGE. |
| 32 | +""" |
| 33 | + |
1 | 34 | from setuptools import setup |
2 | 35 |
|
3 | 36 |
|
|
7 | 40 | author='Waylan Limberg', |
8 | 41 | author_email='waylan.limberg@icloud.com', |
9 | 42 | url='https://github.com/Python-Markdown/github-links/', |
| 43 | + license='BSD License', |
10 | 44 | py_modules=['mdx_gh_links'], |
11 | 45 | install_requires = ['markdown>=2.5'], |
| 46 | + classifiers=[ |
| 47 | + 'Development Status :: 4 - Beta', |
| 48 | + 'License :: OSI Approved :: BSD License', |
| 49 | + 'Operating System :: OS Independent', |
| 50 | + 'Programming Language :: Python', |
| 51 | + 'Programming Language :: Python :: 2', |
| 52 | + 'Programming Language :: Python :: 2.7', |
| 53 | + 'Programming Language :: Python :: 3', |
| 54 | + 'Programming Language :: Python :: 3.4', |
| 55 | + 'Programming Language :: Python :: 3.5', |
| 56 | + 'Programming Language :: Python :: 3.6', |
| 57 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 58 | + 'Programming Language :: Python :: Implementation :: PyPy', |
| 59 | + 'Topic :: Documentation', |
| 60 | + 'Topic :: Text Processing', |
| 61 | + 'Topic :: Text Processing :: Markup', |
| 62 | + 'Topic :: Text Processing :: Markup :: HTML' |
| 63 | + ] |
12 | 64 | ) |
0 commit comments