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 791bb01 commit 98017c3Copy full SHA for 98017c3
setup.py
@@ -1,5 +1,6 @@
1
# coding: UTF-8
2
from setuptools import setup
3
+from pathlib import Path
4
5
# TODO:
6
# - Wrap learning.
@@ -20,9 +21,9 @@
20
21
22
setup(
23
name="pydensecrf2",
- version="1.1rc1",
24
+ version="1.1",
25
description="A python interface to Philipp Krähenbühl's fully-connected (dense) CRF code.",
- long_description="See the README.md at http://github.com/lucasb-eyer/pydensecrf",
26
+ long_description=(Path(__file__).parent / "README.md").read_text(),
27
author="Lucas Beyer, Philipp Krähenbühl",
28
author_email="[email protected]",
29
maintainer="Mackenzie Mathis",
0 commit comments