Skip to content

Commit

Permalink
Merge pull request #1 from nokia/pip-release
Browse files Browse the repository at this point in the history
Changes for the pip release
  • Loading branch information
CsatariGergely committed Sep 1, 2020
2 parents e93690f + b18af00 commit 085be67
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 21 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ A Sphinx extension to correct relative links when using .md as an input.
Overview
--------

When converting Markdown files to html with Sphinx the relative links still point to *.md files.
This Sphinx extension corrects the links to point to *.html files.
When converting Markdown files to html with Sphinx the relative links still point to ``*.md`` files.
This Sphinx extension corrects the links to point to ``*.html`` files.

Links
-----

- Source: https://github.com/CNTT/sphinxcontrib-relative-link-corrector
- Bugs: https://github.com/CNTT/sphinxcontrib-relative-link-corrector/issues
- Source: https://github.com/cntt-n/sphinxcontrib-relative-link-corrector
- Bugs: https://github.com/cntt-n/sphinxcontrib-relative-link-corrector/issues


Contributing
Expand Down
23 changes: 6 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
# Licensed under the Apache License 2.0.
# SPDX-License-Identifier: Apache-2.0


import setuptools



#!/usr/bin/env python
import os
from setuptools import setup

Expand All @@ -24,27 +18,22 @@ def slurp(filename):

setup(
name = "sphinxcontrib.relative-link-corrector",
version = "0.0.1",
version = "0.0.2",
packages = ["sphinxcontrib", "sphinxcontrib.relative-link-corrector"],
namespace_packages = ["sphinxcontrib"],
package_dir = {'': "src"},
author = "Gergely Csatari",
author_email = "gergely.csatari@nokia.com",
license = "Apache License 2.0",
url = "https://github.com/CNTT",
url = "https://github.com/cntt-n/sphinxcontrib-relative-link-corrector",
keywords = ["helpers"],
requires = ["six"],
install_requires = ["beautifulsoup4"],
long_description_content_type = "text/x-rst",
description = ("Corrects relative links when generating documents "
"from .md to .html with commonmark"),
long_description = slurp("README.rst"),
classifiers = ["Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.7",
"Development Status :: 2 - Pre-Alpha",
classifiers = ["Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Topic :: Documentation",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand Down

0 comments on commit 085be67

Please sign in to comment.