kaxil commented on a change in pull request #2:
URL: https://github.com/apache/kibble/pull/2#discussion_r584688676



##########
File path: setup.py
##########
@@ -0,0 +1,90 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+import os
+
+from setuptools import find_packages, setup
+
+VERSION = "2.0.0dev"
+
+BASE_PATH = os.path.dirname(os.path.realpath(__file__))
+
+DEVEL_REQUIREMENTS = [
+    "black==20.8b1",
+    "pre-commit==2.7.1",
+    "pylint==2.6.2",
+    "pytest==6.1.1",
+]
+
+INSTALL_REQUIREMENTS = ["requests>=2.25.1"]
+
+EXTRAS_REQUIREMENTS = {"devel": DEVEL_REQUIREMENTS}
+
+
+def get_long_description() -> str:
+    """Retrieves package description from README.md"""
+    try:
+        with open(os.path.join(BASE_PATH, "README.md")) as file:
+            description = file.read()
+    except FileNotFoundError:
+        description = ""
+    return description
+
+
+def do_setup() -> None:
+    """Perform the Kibble package setup."""
+    setup(
+        name="apache-kibble",
+        description="Apache Kibble is a tool to collect, aggregate "
+        "and visualize data about any software project.",

Review comment:
       ```suggestion
           description="Apache Kibble is a tool to collect, aggregate and 
visualize data about any software project.",
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to