mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-04 04:07:22 +00:00
Update setup.py to include config files used by model analysis in wheel. (#11381)
* Update setup.py to include config files used by model analysis in wheel.
This commit is contained in:
parent
6cd1931a93
commit
833ded4b0e
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
|
@ -367,6 +367,9 @@ packages = [
|
|||
"onnxruntime.transformers.models.t5",
|
||||
]
|
||||
|
||||
package_data = {"onnxruntime.tools.mobile_helpers": ["*.md", "*.config"]}
|
||||
data_files = []
|
||||
|
||||
requirements_file = "requirements.txt"
|
||||
|
||||
local_version = None
|
||||
|
|
@ -374,9 +377,6 @@ enable_training = parse_arg_remove_boolean(sys.argv, "--enable_training")
|
|||
disable_auditwheel_repair = parse_arg_remove_boolean(sys.argv, "--disable_auditwheel_repair")
|
||||
default_training_package_device = parse_arg_remove_boolean(sys.argv, "--default_training_package_device")
|
||||
|
||||
package_data = {}
|
||||
data_files = []
|
||||
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
|
|
|
|||
Loading…
Reference in a new issue