Dev-iL commented on code in PR #1488:
URL: https://github.com/apache/hamilton/pull/1488#discussion_r2851273164


##########
ui/sdk/pyproject.toml:
##########
@@ -1,62 +1,102 @@
+# 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.
+
 [build-system]
-requires = ["setuptools >= 61.0.0", "wheel"]
-build-backend = "setuptools.build_meta"
+requires = ["flit_core >=3.11,<4"]
+build-backend = "flit_core.buildapi"
 
 [project]
-name = "sf-hamilton-sdk"
-description = "Hamilton SDK for reading and writing to the Hamilton backend 
APIs that support the UI."
+name = "apache-hamilton-sdk"
+version = "0.8.0"
+description = "Apache Hamilton SDK for reading and writing to the Apache 
Hamilton backend APIs that support the UI."
+readme = "README.md"
+requires-python = ">=3.10, <4"
+license = "Apache-2.0"
+license-files = ["LICENSE", "NOTICE", "DISCLAIMER"]
+keywords = ["hamilton", "dagworks", "observability"]
 authors = [
     {name = "Stefan Krawczyk", email = "[email protected]"},
     {name = "Elijah ben Izzy", email = "[email protected]"}
 ]
-readme = "README.md"
-keywords = ["hamilton", "dagworks", "observability"]
 classifiers = [
     "Development Status :: 4 - Beta",
     "Intended Audience :: Developers",
     "Natural Language :: English",
-    "License :: OSI Approved :: Apache Software License",
     "Programming Language :: Python :: 3",
     "Programming Language :: Python :: 3.10",
     "Programming Language :: Python :: 3.11",
     "Programming Language :: Python :: 3.12",
     "Programming Language :: Python :: 3.13",
     "Programming Language :: Python :: 3.14"
 ]
-requires-python = ">=3.10, <4"
-dynamic = ["dependencies", "optional-dependencies", "version"]
+dependencies = [
+    "aiohttp",
+    "click",
+    "gitpython",
+    "jinja2",
+    "loguru",
+    "posthog",
+    "requests",
+    "apache-hamilton>=1.43.0",

Review Comment:
   I could have sworn that a build failed for me because the specified minimum 
was lower than the lowest version on pypi. I guess it is not the case...
   
   ```bash
    uv pip install "apache-hamilton>=1.43.0" --dry-run
     x Failed to download and build `apache-hamilton==1.89.0`
     |-> Failed to extract static metadata from `PKG-INFO`
     `-> Header cannot start with a space; it is likely an overhanging line 
from a previous header
     ```



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to