Skip to content

Commit 366bdde

Browse files
committed
Added project_urls to setup.py, removed links and license from long_description
1 parent 5302c22 commit 366bdde

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ Contributing
116116

117117
I am developing this library as my bachelor thesis and will be not accepting any PRs at the moment.
118118

119+
.. split_here
120+
119121
Links
120122
*****
121123

setup.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
def long_description():
1515
return """{}\n\n{}""".format(
16-
(Path(__file__).resolve().parent / "README.rst").read_text(),
16+
(Path(__file__).resolve().parent / "README.rst").read_text().split(".. split_here")[0],
1717
(Path(__file__).resolve().parent / "docs/changes.rst").read_text()
1818
)
1919

@@ -58,5 +58,10 @@ def long_description():
5858
tests_require=["pytest", "pytest-flake8", "pytest-cov", "pytest-mock"],
5959
cmdclass={
6060
"deploy_docker_bases": DeployDockerBasesCommand
61-
}
61+
},
62+
project_urls={
63+
"Documentation": "https://arca.readthedocs.io/",
64+
"CI": "https://travis-ci.org/mikicz/arca",
65+
"Test coverage": "https://codecov.io/gh/mikicz/arca",
66+
},
6267
)

0 commit comments

Comments
 (0)