mirror of
https://github.com/kvcache-ai/custom_flashinfer.git
synced 2026-07-17 00:57:37 +00:00
According to [Python Packaging User Guide](https://packaging.python.org/en/latest/discussions/setup-py-deprecated/), `python setup.py` and the use of `setup.py` as a command line tool are deprecated. This PR unifies `setup.py` and `aot_setup.py` and moves static fields to `pyproject.toml`.
17 lines
633 B
Bash
Executable File
17 lines
633 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2024 by FlashInfer team.
|
|
|
|
# Licensed 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.
|
|
|
|
mypy --check-untyped-defs flashinfer/
|