From ba6c70e9ac409ed52e19d2abaac152b85789abbb Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson Date: Mon, 27 Feb 2023 11:52:38 +0100 Subject: [PATCH] Add a bit of info to setup.py --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f5d9bdd..6817277 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ #!/usr/bin/env python import os +from pathlib import Path from setuptools import setup def get_version(path): @@ -18,10 +19,15 @@ def get_version(path): author='Ilya Flyamer', author_email='flyamer@gmail.com', url='https://github.com/Phlya/adjustText', + project_urls={ + 'Documentation': 'https://adjusttext.readthedocs.io/', + }, packages=['adjustText'], install_requires=['numpy', 'matplotlib'], include_package_data=True, - + long_description=Path("README.md").read_text(encoding="utf-8"), + long_description_content_type="text/markdown", + license="MIT", classifiers=[ 'Framework :: Matplotlib', 'Topic :: Scientific/Engineering :: Visualization'],