From c3ed0f1f32701b7844de2739898c62c6af380ef1 Mon Sep 17 00:00:00 2001 From: skjerns <14980558+skjerns@users.noreply.github.com> Date: Mon, 8 Mar 2021 14:51:18 +0100 Subject: [PATCH] adapted setup.py --- setup.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1a86cf3..48c92bb 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,25 @@ from setuptools import setup +with open("README.md", "r") as fh: + long_description = fh.read() + setup(name='pyunisens', python_requires='>=3.6', - version='1.02', + version='1.03', description='A python implementation of the Unisens standard', - url='http://github.com/skjerns/pyUnisens', + url='http://github.com/Unisens/pyUnisens', author='skjerns', license='GNU 2.0', packages=['unisens'], + long_description=long_description, + long_description_content_type="text/markdown", install_requires=[ 'numpy', 'datetime', 'pandas'], + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], zip_safe=False)