Skip to content

Commit

Permalink
add long description
Browse files Browse the repository at this point in the history
  • Loading branch information
bknueven committed Apr 4, 2023
1 parent b426702 commit 71a2bb3
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 @@ -17,6 +17,10 @@
sys.exit("Support for Python 4 is undetermined")

from setuptools import setup, find_namespace_packages
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()

packages = find_namespace_packages(include=['prescient.*'])

Expand All @@ -28,6 +32,8 @@
author_email='[email protected]',
python_requires='>=3.7, <4',
packages=packages,
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'runner.py = prescient.scripts.runner:main',
Expand Down

0 comments on commit 71a2bb3

Please sign in to comment.