Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rmanhaeve authored Oct 29, 2024
1 parent 4539605 commit 1f11199
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
exec(fp.read(), version)
version = version["version"]

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

if __name__ == "__main__" and len(sys.argv) == 1:
from problog import setup as problog_setup

Expand Down Expand Up @@ -60,6 +64,8 @@ def run(self):
name="problog",
version=version,
description="ProbLog2: Probabilistic Logic Programming toolbox",
long_description=long_description,
long_description_content_type='text/markdown'
url="https://dtai.cs.kuleuven.be/problog",
author="ProbLog team",
author_email="[email protected]",
Expand Down

0 comments on commit 1f11199

Please sign in to comment.