10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec2c9c6 commit f43d162Copy full SHA for f43d162
setup.py
@@ -13,6 +13,8 @@
13
with codecs.open("README.rst", encoding="utf-8") as f:
14
readme = f.read()
15
16
+code_ns = "bitprophet/alabaster"
17
+
18
setup(
19
name="alabaster",
20
version=version,
@@ -21,6 +23,11 @@
21
23
author="Jeff Forcier",
22
24
author_email="jeff@bitprophet.org",
25
url="https://alabaster.readthedocs.io",
26
+ project_urls={
27
+ "Source": f"https://github.com/{code_ns}",
28
+ "Changelog": f"https://github.com/{code_ns}/blob/main/docs/changelog.rst", # noqa
29
+ "CI": f"https://app.circleci.com/pipelines/github/{code_ns}",
30
+ },
31
packages=["alabaster"],
32
include_package_data=True,
33
entry_points={"sphinx.html_themes": ["alabaster = alabaster"]},
0 commit comments