This repository has been archived by the owner on Feb 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (42 loc) · 1.58 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'Readme.md')) as f:
long_description = f.read()
setup(
name='markdown_downheader',
version = '1.1.3',
keywords='text filter markdown html headers',
description='Python Markdown extension to downgrade headers, for example, from h1 to h2',
long_description_content_type='text/markdown',
long_description=long_description,
author= 'Cristian Prieto',
author_email='[email protected]',
url='http://github.com/cprieto/mdx_downheader',
py_modules=['mdx_downheader'],
install_requires=['Markdown'],
test_require=[
'codecov',
'coverage',
'nose'
],
license='Simplified BSD License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)