From a42ecdeee8ddfc04ceabe8e0df4f5ea4db2407aa Mon Sep 17 00:00:00 2001 From: Moritz Meister <8422705+moritzmeister@users.noreply.github.com> Date: Mon, 14 Sep 2020 09:39:00 +0200 Subject: [PATCH] Modify setup.py metadata (#102) --- python/setup.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/python/setup.py b/python/setup.py index dfdb2cc868..e8ee99e2ea 100644 --- a/python/setup.py +++ b/python/setup.py @@ -28,19 +28,20 @@ def read(fname): "sqlalchemy", ], extras_require={"dev": ["pytest", "flake8", "black"]}, - author="Moritz Meister", + author="Logical Clocks AB", author_email="moritz@logicalclocks.com", - description="", + description="HSFS: An environment independent client to interact with the Hopsworks Featurestore", license="Apache License 2.0", - keywords="", - url="", - download_url="", + keywords="Hopsworks, Feature Store, Spark, Machine Learning, MLOps, DataOps", + url="https://github.com/logicalclocks/feature-store-api", + download_url="https://github.com/logicalclocks/feature-store-api/releases/tag/" + __version__, packages=find_packages(), - long_description="", # read('README.rst'), + long_description=read('../README.md'), classifiers=[ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 5 - Production/Stable", "Topic :: Utilities", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", + "Intended Audience :: Developers", ], )