diff --git a/CHANGELOG.md b/CHANGELOG.md index ed7a593..0fa1e45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,10 +14,11 @@ - Delete `Menu.preliminary` in favour of the eponymous attribute ([a4023312360a6295f4748dd08349dde99b3805bd](https://github.com/hearot/pyrubrum/commit/a4023312360a6295f4748dd08349dde99b3805bd)) - Edit documentation for `Menu.default` ([003137fdda1de337e6aa7fb0e81c7fcdfc4337d9](https://github.com/hearot/pyrubrum/commit/003137fdda1de337e6aa7fb0e81c7fcdfc4337d9)) + - Upload correct changelog links to PyPi ### New features - - Add `PageStyle` for customizing `PageMenu` layouts + - Add `PageStyle` for customizing `PageMenu` layouts ([46a14edb7f57d0d5b23f11091c806b5b8e2ada58](https://github.com/hearot/pyrubrum/commit/46a14edb7f57d0d5b23f11091c806b5b8e2ada58)) - Do not pass parameters to content functions if not supported ([dad5907521d635701cbea12ac736b4f0362e41e6](https://github.com/hearot/pyrubrum/commit/dad5907521d635701cbea12ac736b4f0362e41e6)) - Import all the public functions ([c0a7deb30fbe75d6b8c37f71dcaaa49ba8b3ab8f](https://github.com/hearot/pyrubrum/commit/c0a7deb30fbe75d6b8c37f71dcaaa49ba8b3ab8f)) - Import database errors by default ([eb6bb8b5320676e1f474097e3738d54ddddb31e7](https://github.com/hearot/pyrubrum/commit/eb6bb8b5320676e1f474097e3738d54ddddb31e7)) diff --git a/FEATURES.md b/FEATURES.md index cf1522e..7d1ec1b 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -10,10 +10,11 @@ - Delete `Menu.preliminary` in favour of the eponymous attribute ([a4023312360a6295f4748dd08349dde99b3805bd](https://github.com/hearot/pyrubrum/commit/a4023312360a6295f4748dd08349dde99b3805bd)) - Edit documentation for `Menu.default` ([003137fdda1de337e6aa7fb0e81c7fcdfc4337d9](https://github.com/hearot/pyrubrum/commit/003137fdda1de337e6aa7fb0e81c7fcdfc4337d9)) + - Upload correct changelog links to PyPi ### New features - - Add `PageStyle` for customizing `PageMenu` layouts + - Add `PageStyle` for customizing `PageMenu` layouts ([46a14edb7f57d0d5b23f11091c806b5b8e2ada58](https://github.com/hearot/pyrubrum/commit/46a14edb7f57d0d5b23f11091c806b5b8e2ada58)) - Do not pass parameters to content functions if not supported ([dad5907521d635701cbea12ac736b4f0362e41e6](https://github.com/hearot/pyrubrum/commit/dad5907521d635701cbea12ac736b4f0362e41e6)) - Import all the public functions ([c0a7deb30fbe75d6b8c37f71dcaaa49ba8b3ab8f](https://github.com/hearot/pyrubrum/commit/c0a7deb30fbe75d6b8c37f71dcaaa49ba8b3ab8f)) - Import database errors by default ([eb6bb8b5320676e1f474097e3738d54ddddb31e7](https://github.com/hearot/pyrubrum/commit/eb6bb8b5320676e1f474097e3738d54ddddb31e7)) diff --git a/setup.py b/setup.py index 2c4ac46..49a9219 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,8 @@ from setuptools import find_packages from setuptools import setup +GITHUB_REPOSITORY = "https://github.com/hearot/pyrubrum/blob/v%s/" + with open("fast-requirements.txt", encoding="utf-8") as r: fast_requirements = [p.strip() for p in r] @@ -30,7 +32,7 @@ version = re.findall(r"__version__ = \"(.+)\"", f.read())[0] with open("README.md", encoding="utf-8") as f: - long_description = f.read() + long_description = f.read().replace("./", GITHUB_REPOSITORY % version) with open("requirements.txt", encoding="utf-8") as r: requirements = [p.strip() for p in r]