Skip to content

Commit

Permalink
Set project long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
susannasiebert committed Apr 19, 2024
1 parent ea48db2 commit 6f95082
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
@@ -1,5 +1,9 @@
from setuptools import setup
from civicpy.__version__ import __version__, __authors__, __author_email__, __description__, __url__
from pathlib import Path

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

setup(
name='civicpy',
Expand All @@ -10,6 +14,8 @@
author=', '.join(__authors__),
author_email=__author_email__,
description=__description__,
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 6f95082

Please sign in to comment.