Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
from pathlib import Path

from setuptools import setup, find_packages

# Read as UTF-8 rather than in whatever the locale encoding happens to be: the
# README contains emoji, which cp1252 (the Windows default) cannot decode, and
# the failure aborts metadata generation for the whole package. Resolving the
# path against this file also keeps it readable when setup.py runs from another
# working directory.
long_description = (Path(__file__).parent / 'README.md').read_text(encoding='utf-8')

setup(
name='yprov4wfs',
version='0.0.9',
Expand All @@ -8,7 +17,7 @@
install_requires=[],
author='Carolina Sopranzetti',
description='A module for tracking the provenance of a workflow using a Workflow Management System.',
long_description=open('README.md').read(),
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/HPCI-Lab/yProv4WFs',
license='GNU General Public License v3 (GPLv3)',
Expand Down