mirror of
https://github.com/apache/superset.git
synced 2026-05-29 20:29:34 +00:00
Co-authored-by: Ville Brofeldt <ville.brofeldt@apple.com> Co-authored-by: Ville Brofeldt <ville@Villes-MacBook-Pro-2024.local> Co-authored-by: Ville Brofeldt <v_brofeldt@apple.com>
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
|
|
# 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.
|
|
|
|
[project]
|
|
name = "apache-superset-core"
|
|
version = "0.0.1"
|
|
description = "Common components for Apache Superset"
|
|
authors = [
|
|
{ name = "Apache Software Foundation", email = "dev@superset.apache.org" },
|
|
]
|
|
license = { file="LICENSE.txt" }
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
]
|
|
dependencies = [
|
|
"flask-appbuilder>=4.5.3, <5.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=76.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["superset_core"]
|
|
package-dir = { "" = "src" }
|