|
|
|||
Warning, file /iDDS/prompt/setup.py was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #!/usr/bin/env python 0002 # 0003 # Licensed under the Apache License, Version 2.0 (the "License"); 0004 # You may not use this file except in compliance with the License. 0005 # You may obtain a copy of the License at 0006 # http://www.apache.org/licenses/LICENSE-2.0 0007 # 0008 # Authors: 0009 # - Wen Guan, <wen.guan@cern.ch>, 2019 - 2025 0010 0011 # Metadata is in pyproject.toml. This file handles data_files and scripts 0012 # which require glob patterns not supported in pyproject.toml. 0013 0014 import glob 0015 from setuptools import setup 0016 0017 data_files = [ 0018 ('tools/prompt/env/', glob.glob('tools/prompt/env/*.yml')), 0019 ('tools/prompt/make/', glob.glob('tools/prompt/make/*')), 0020 ] 0021 0022 scripts = glob.glob('bin/*') 0023 0024 setup( 0025 data_files=data_files, 0026 scripts=scripts, 0027 )
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|