cuml-cu12 23.12.0__tar.gz → 24.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
PKG-INFO ADDED
@@ -0,0 +1,101 @@
1
+ Metadata-Version: 2.1
2
+ Name: cuml-cu12
3
+ Version: 24.4.0
4
+ Summary: cuML - RAPIDS ML Algorithms
5
+ Author: NVIDIA Corporation
6
+ License: Apache 2.0
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: Programming Language :: Python
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Project-URL: Homepage, https://github.com/rapidsai/cuml
13
+ Project-URL: Documentation, https://docs.rapids.ai/api/cuml/stable/
14
+ Requires-Python: >=3.9
15
+ Provides-Extra: test
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Stub-Only: True
19
+
20
+ # cuML Python Package
21
+
22
+ This folder contains the Python and Cython code of the algorithms and ML primitives of cuML, that are distributed in the Python cuML package.
23
+
24
+ Contents:
25
+
26
+ - [cuML Python Package](#cuml-python-package)
27
+ - [Build Configuration](#build-configuration)
28
+ - [RAFT Integration in cuml.raft](#raft-integration-in-cumlraft)
29
+ - [Build Requirements](#build-requirements)
30
+ - [Python Tests](#python-tests)
31
+
32
+ ### Build Configuration
33
+
34
+ The build system uses setup.py for configuration and building.
35
+
36
+ cuML's setup.py can be configured through environment variables and command line arguments.
37
+
38
+ The environment variables are:
39
+
40
+ | Environment variable | Possible values | Default behavior if not set | Behavior |
41
+ | --- | --- | --- | --- |
42
+ | CUDA_HOME | path/to/cuda_toolkit | Inferred by location of `nvcc` | Optional variable allowing to manually specify location of the CUDA toolkit. |
43
+ | CUML_BUILD_PATH | path/to/libcuml_build_folder | Looked for in path_to_cuml_repo/cpp/build | Optional variable allowing to manually specify location of libcuml++ build folder. |
44
+ | RAFT_PATH | path/to/raft | Looked for in path_to_cuml_repo/cpp/build, if not found clone | Optional variable allowing to manually specify location of the RAFT Repository. |
45
+
46
+ The command line arguments (i.e. passed alongside `setup.py` when invoking, for
47
+ example `setup.py --singlegpu`) are:
48
+
49
+
50
+ | Argument | Behavior |
51
+ | --- | --- |
52
+ | clean --all | Cleans all Python and Cython artifacts, including pycache folders, .cpp files resulting of cythonization and compiled extensions. |
53
+ | --singlegpu | Option to build cuML without multiGPU algorithms. Removes dependency on nccl, libcumlprims and ucx-py. |
54
+
55
+
56
+ ### RAFT Integration in cuml.raft
57
+
58
+ RAFT's Python and Cython is located in the [RAFT repository](https://github.com/rapidsai/raft/python). It was designed to be included in projects as opposed to be distributed by itself, so at build time, **setup.py creates a symlink from cuML, located in `/python/cuml/raft/` to the Python folder of RAFT**.
59
+
60
+ For developers that need to modify RAFT code, please refer to the [RAFT Developer Guide](https://github.com/rapidsai/raft/blob/branch-24.04/docs/source/build.md) for recommendations.
61
+
62
+ To configure RAFT at build time:
63
+
64
+ 1. If the environment variable `RAFT_PATH` points to the RAFT repo, then that will be used.
65
+ 2. If there is a libcuml build folder that has cloned RAFT already, setup.py will use that RAFT. Location of this can be configured with the environment variable CUML_BUILD_PATH.
66
+ 3. If none of the above happened, then setup.py will clone RAFT and use it directly.
67
+
68
+ The RAFT Python code gets included in the cuML build and distributable artifacts as if it was always present in the folder structure of cuML.
69
+
70
+ ### Build Requirements
71
+
72
+ cuML's convenience [development yaml files](https://github.com/rapidsai/cuml/tree/branch-24.04/environments) includes all dependencies required to build cuML.
73
+
74
+ To build cuML's Python package, the following dependencies are required:
75
+
76
+ - cudatoolkit version corresponding to system CUDA toolkit
77
+ - setuptools
78
+ - cython >= 0.29, < 0.30
79
+ - numpy
80
+ - cmake >= 3.14
81
+ - cudf version matching the cuML version
82
+ - libcuml version matching the cuML version
83
+ - libcuml={{ version }}
84
+ - cupy>=7.8.0,<12.0.0a0
85
+ - joblib >=0.11
86
+
87
+ Packages required for multigpu algorithms*:
88
+ - libcumlprims version matching the cuML version
89
+ - ucx-py version matching the cuML version
90
+ - dask-cudf version matching the cuML version
91
+ - nccl>=2.5
92
+ - rapids-dask-dependency version matching the cuML version
93
+
94
+ * this can be avoided with `--singlegpu` argument flag.
95
+
96
+
97
+ ### Python Tests
98
+
99
+ Python tests are based on the pytest library. To run them, from the `path_to_cuml/python/` folder, simply type `pytest`.
100
+
101
+
pyproject.toml ADDED
@@ -0,0 +1,6 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2
3
+
4
+ [build-system]
5
+ requires = ["nvidia-stub"]
6
+ build-backend = "nvidia_stub.buildapi"
@@ -1,10 +0,0 @@
1
-
2
- ###########################################################################################
3
- The package you are trying to install is only a placeholder project on PyPI.org repository.
4
- This package is hosted on NVIDIA Python Package Index.
5
-
6
- This package can be installed as:
7
- ```
8
- $ pip install --no-cache-dir --extra-index-url https://pypi.nvidia.com cuml-cu12
9
- ```
10
- ###########################################################################################
@@ -1,202 +0,0 @@
1
-
2
- Apache License
3
- Version 2.0, January 2004
4
- http://www.apache.org/licenses/
5
-
6
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
-
8
- 1. Definitions.
9
-
10
- "License" shall mean the terms and conditions for use, reproduction,
11
- and distribution as defined by Sections 1 through 9 of this document.
12
-
13
- "Licensor" shall mean the copyright owner or entity authorized by
14
- the copyright owner that is granting the License.
15
-
16
- "Legal Entity" shall mean the union of the acting entity and all
17
- other entities that control, are controlled by, or are under common
18
- control with that entity. For the purposes of this definition,
19
- "control" means (i) the power, direct or indirect, to cause the
20
- direction or management of such entity, whether by contract or
21
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
- outstanding shares, or (iii) beneficial ownership of such entity.
23
-
24
- "You" (or "Your") shall mean an individual or Legal Entity
25
- exercising permissions granted by this License.
26
-
27
- "Source" form shall mean the preferred form for making modifications,
28
- including but not limited to software source code, documentation
29
- source, and configuration files.
30
-
31
- "Object" form shall mean any form resulting from mechanical
32
- transformation or translation of a Source form, including but
33
- not limited to compiled object code, generated documentation,
34
- and conversions to other media types.
35
-
36
- "Work" shall mean the work of authorship, whether in Source or
37
- Object form, made available under the License, as indicated by a
38
- copyright notice that is included in or attached to the work
39
- (an example is provided in the Appendix below).
40
-
41
- "Derivative Works" shall mean any work, whether in Source or Object
42
- form, that is based on (or derived from) the Work and for which the
43
- editorial revisions, annotations, elaborations, or other modifications
44
- represent, as a whole, an original work of authorship. For the purposes
45
- of this License, Derivative Works shall not include works that remain
46
- separable from, or merely link (or bind by name) to the interfaces of,
47
- the Work and Derivative Works thereof.
48
-
49
- "Contribution" shall mean any work of authorship, including
50
- the original version of the Work and any modifications or additions
51
- to that Work or Derivative Works thereof, that is intentionally
52
- submitted to Licensor for inclusion in the Work by the copyright owner
53
- or by an individual or Legal Entity authorized to submit on behalf of
54
- the copyright owner. For the purposes of this definition, "submitted"
55
- means any form of electronic, verbal, or written communication sent
56
- to the Licensor or its representatives, including but not limited to
57
- communication on electronic mailing lists, source code control systems,
58
- and issue tracking systems that are managed by, or on behalf of, the
59
- Licensor for the purpose of discussing and improving the Work, but
60
- excluding communication that is conspicuously marked or otherwise
61
- designated in writing by the copyright owner as "Not a Contribution."
62
-
63
- "Contributor" shall mean Licensor and any individual or Legal Entity
64
- on behalf of whom a Contribution has been received by Licensor and
65
- subsequently incorporated within the Work.
66
-
67
- 2. Grant of Copyright License. Subject to the terms and conditions of
68
- this License, each Contributor hereby grants to You a perpetual,
69
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
- copyright license to reproduce, prepare Derivative Works of,
71
- publicly display, publicly perform, sublicense, and distribute the
72
- Work and such Derivative Works in Source or Object form.
73
-
74
- 3. Grant of Patent License. Subject to the terms and conditions of
75
- this License, each Contributor hereby grants to You a perpetual,
76
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
- (except as stated in this section) patent license to make, have made,
78
- use, offer to sell, sell, import, and otherwise transfer the Work,
79
- where such license applies only to those patent claims licensable
80
- by such Contributor that are necessarily infringed by their
81
- Contribution(s) alone or by combination of their Contribution(s)
82
- with the Work to which such Contribution(s) was submitted. If You
83
- institute patent litigation against any entity (including a
84
- cross-claim or counterclaim in a lawsuit) alleging that the Work
85
- or a Contribution incorporated within the Work constitutes direct
86
- or contributory patent infringement, then any patent licenses
87
- granted to You under this License for that Work shall terminate
88
- as of the date such litigation is filed.
89
-
90
- 4. Redistribution. You may reproduce and distribute copies of the
91
- Work or Derivative Works thereof in any medium, with or without
92
- modifications, and in Source or Object form, provided that You
93
- meet the following conditions:
94
-
95
- (a) You must give any other recipients of the Work or
96
- Derivative Works a copy of this License; and
97
-
98
- (b) You must cause any modified files to carry prominent notices
99
- stating that You changed the files; and
100
-
101
- (c) You must retain, in the Source form of any Derivative Works
102
- that You distribute, all copyright, patent, trademark, and
103
- attribution notices from the Source form of the Work,
104
- excluding those notices that do not pertain to any part of
105
- the Derivative Works; and
106
-
107
- (d) If the Work includes a "NOTICE" text file as part of its
108
- distribution, then any Derivative Works that You distribute must
109
- include a readable copy of the attribution notices contained
110
- within such NOTICE file, excluding those notices that do not
111
- pertain to any part of the Derivative Works, in at least one
112
- of the following places: within a NOTICE text file distributed
113
- as part of the Derivative Works; within the Source form or
114
- documentation, if provided along with the Derivative Works; or,
115
- within a display generated by the Derivative Works, if and
116
- wherever such third-party notices normally appear. The contents
117
- of the NOTICE file are for informational purposes only and
118
- do not modify the License. You may add Your own attribution
119
- notices within Derivative Works that You distribute, alongside
120
- or as an addendum to the NOTICE text from the Work, provided
121
- that such additional attribution notices cannot be construed
122
- as modifying the License.
123
-
124
- You may add Your own copyright statement to Your modifications and
125
- may provide additional or different license terms and conditions
126
- for use, reproduction, or distribution of Your modifications, or
127
- for any such Derivative Works as a whole, provided Your use,
128
- reproduction, and distribution of the Work otherwise complies with
129
- the conditions stated in this License.
130
-
131
- 5. Submission of Contributions. Unless You explicitly state otherwise,
132
- any Contribution intentionally submitted for inclusion in the Work
133
- by You to the Licensor shall be under the terms and conditions of
134
- this License, without any additional terms or conditions.
135
- Notwithstanding the above, nothing herein shall supersede or modify
136
- the terms of any separate license agreement you may have executed
137
- with Licensor regarding such Contributions.
138
-
139
- 6. Trademarks. This License does not grant permission to use the trade
140
- names, trademarks, service marks, or product names of the Licensor,
141
- except as required for reasonable and customary use in describing the
142
- origin of the Work and reproducing the content of the NOTICE file.
143
-
144
- 7. Disclaimer of Warranty. Unless required by applicable law or
145
- agreed to in writing, Licensor provides the Work (and each
146
- Contributor provides its Contributions) on an "AS IS" BASIS,
147
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
- implied, including, without limitation, any warranties or conditions
149
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
- PARTICULAR PURPOSE. You are solely responsible for determining the
151
- appropriateness of using or redistributing the Work and assume any
152
- risks associated with Your exercise of permissions under this License.
153
-
154
- 8. Limitation of Liability. In no event and under no legal theory,
155
- whether in tort (including negligence), contract, or otherwise,
156
- unless required by applicable law (such as deliberate and grossly
157
- negligent acts) or agreed to in writing, shall any Contributor be
158
- liable to You for damages, including any direct, indirect, special,
159
- incidental, or consequential damages of any character arising as a
160
- result of this License or out of the use or inability to use the
161
- Work (including but not limited to damages for loss of goodwill,
162
- work stoppage, computer failure or malfunction, or any and all
163
- other commercial damages or losses), even if such Contributor
164
- has been advised of the possibility of such damages.
165
-
166
- 9. Accepting Warranty or Additional Liability. While redistributing
167
- the Work or Derivative Works thereof, You may choose to offer,
168
- and charge a fee for, acceptance of support, warranty, indemnity,
169
- or other liability obligations and/or rights consistent with this
170
- License. However, in accepting such obligations, You may act only
171
- on Your own behalf and on Your sole responsibility, not on behalf
172
- of any other Contributor, and only if You agree to indemnify,
173
- defend, and hold each Contributor harmless for any liability
174
- incurred by, or claims asserted against, such Contributor by reason
175
- of your accepting any such warranty or additional liability.
176
-
177
- END OF TERMS AND CONDITIONS
178
-
179
- APPENDIX: How to apply the Apache License to your work.
180
-
181
- To apply the Apache License to your work, attach the following
182
- boilerplate notice, with the fields enclosed by brackets "[]"
183
- replaced with your own identifying information. (Don't include
184
- the brackets!) The text should be enclosed in the appropriate
185
- comment syntax for the file format. We also recommend that a
186
- file or class name and description of purpose be included on the
187
- same "printed page" as the copyright notice for easier
188
- identification within third-party archives.
189
-
190
- Copyright 2020 NVIDIA
191
-
192
- Licensed under the Apache License, Version 2.0 (the "License");
193
- you may not use this file except in compliance with the License.
194
- You may obtain a copy of the License at
195
-
196
- http://www.apache.org/licenses/LICENSE-2.0
197
-
198
- Unless required by applicable law or agreed to in writing, software
199
- distributed under the License is distributed on an "AS IS" BASIS,
200
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
- See the License for the specific language governing permissions and
202
- limitations under the License.
@@ -1 +0,0 @@
1
- cuml-cu12
@@ -1,41 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cuml-cu12
3
- Version: 23.12.0
4
- Summary: A fake package to warn the user they are not installing the correct package.
5
- Home-page: https://github.com/NVIDIA
6
- Download-URL: https://github.com/NVIDIA
7
- Author: Kitmaker
8
- Author-email: kitmaker@nvidia.com
9
- Maintainer: Kitmaker
10
- Maintainer-email: kitmaker@nvidia.com
11
- License: Apache2
12
- Keywords: nvidia,deep learning,machine learning,supervised learning,unsupervised learning,reinforcement learning,logging
13
- Platform: Linux
14
- Classifier: Development Status :: 3 - Alpha
15
- Classifier: Intended Audience :: Developers
16
- Classifier: Intended Audience :: Science/Research
17
- Classifier: Intended Audience :: Information Technology
18
- Classifier: Topic :: Scientific/Engineering
19
- Classifier: Topic :: Scientific/Engineering :: Image Recognition
20
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
- Classifier: Topic :: Software Development :: Libraries
22
- Classifier: Topic :: Utilities
23
- Classifier: License :: OSI Approved :: Apache Software License
24
- Classifier: Programming Language :: Python :: 3.5
25
- Classifier: Programming Language :: Python :: 3.6
26
- Classifier: Programming Language :: Python :: 3.7
27
- Classifier: Programming Language :: Python :: 3.8
28
- Classifier: Environment :: Console
29
- Classifier: Natural Language :: English
30
- Classifier: Operating System :: OS Independent
31
- License-File: LICENSE.md
32
-
33
- CUML-CU12
34
- =========
35
-
36
- **WARNING:** This project is not functional and is a placeholder from NVIDIA.
37
- To install, please execute the following:
38
-
39
- .. code-block:: bash
40
-
41
- pip install --no-cache-dir --extra-index-url https://pypi.nvidia.com cuml-cu12
@@ -1,9 +0,0 @@
1
- CUML-CU12
2
- =========
3
-
4
- **WARNING:** This project is not functional and is a placeholder from NVIDIA.
5
- To install, please execute the following:
6
-
7
- .. code-block:: bash
8
-
9
- pip install --no-cache-dir --extra-index-url https://pypi.nvidia.com cuml-cu12
@@ -1,41 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cuml-cu12
3
- Version: 23.12.0
4
- Summary: A fake package to warn the user they are not installing the correct package.
5
- Home-page: https://github.com/NVIDIA
6
- Download-URL: https://github.com/NVIDIA
7
- Author: Kitmaker
8
- Author-email: kitmaker@nvidia.com
9
- Maintainer: Kitmaker
10
- Maintainer-email: kitmaker@nvidia.com
11
- License: Apache2
12
- Keywords: nvidia,deep learning,machine learning,supervised learning,unsupervised learning,reinforcement learning,logging
13
- Platform: Linux
14
- Classifier: Development Status :: 3 - Alpha
15
- Classifier: Intended Audience :: Developers
16
- Classifier: Intended Audience :: Science/Research
17
- Classifier: Intended Audience :: Information Technology
18
- Classifier: Topic :: Scientific/Engineering
19
- Classifier: Topic :: Scientific/Engineering :: Image Recognition
20
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
- Classifier: Topic :: Software Development :: Libraries
22
- Classifier: Topic :: Utilities
23
- Classifier: License :: OSI Approved :: Apache Software License
24
- Classifier: Programming Language :: Python :: 3.5
25
- Classifier: Programming Language :: Python :: 3.6
26
- Classifier: Programming Language :: Python :: 3.7
27
- Classifier: Programming Language :: Python :: 3.8
28
- Classifier: Environment :: Console
29
- Classifier: Natural Language :: English
30
- Classifier: Operating System :: OS Independent
31
- License-File: LICENSE.md
32
-
33
- CUML-CU12
34
- =========
35
-
36
- **WARNING:** This project is not functional and is a placeholder from NVIDIA.
37
- To install, please execute the following:
38
-
39
- .. code-block:: bash
40
-
41
- pip install --no-cache-dir --extra-index-url https://pypi.nvidia.com cuml-cu12
@@ -1,9 +0,0 @@
1
- ERROR.txt
2
- LICENSE.md
3
- PACKAGE_NAME
4
- README.rst
5
- setup.py
6
- cuml_cu12.egg-info/PKG-INFO
7
- cuml_cu12.egg-info/SOURCES.txt
8
- cuml_cu12.egg-info/dependency_links.txt
9
- cuml_cu12.egg-info/top_level.txt
@@ -1 +0,0 @@
1
- printWheelNameVersion
@@ -1,4 +0,0 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
@@ -1,137 +0,0 @@
1
- #! /usr/bin/python
2
- # -*- coding: utf-8 -*-
3
-
4
- # Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
-
18
- import os
19
- import sys
20
- import codecs
21
- import fileinput
22
- import shutil
23
-
24
- from contextlib import contextmanager
25
-
26
- from setuptools import setup
27
-
28
- # Get the long description
29
- BASE_DIR = os.path.abspath(os.path.dirname(__file__))
30
-
31
-
32
- def build_package(pkg_name, pkg_version):
33
-
34
- with codecs.open(os.path.join(BASE_DIR, 'README.rst'), encoding='utf-8') as f:
35
- long_description = f.read()
36
-
37
- setup(
38
- name=pkg_name,
39
- version=pkg_version,
40
- description="A fake package to warn the user they are not installing the correct package.",
41
- long_description=long_description,
42
-
43
- # The project's main homepage.
44
- url='https://github.com/NVIDIA',
45
- download_url='https://github.com/NVIDIA',
46
-
47
- # Author details
48
- author="Kitmaker",
49
- author_email='kitmaker@nvidia.com',
50
-
51
- # maintainer Details
52
- maintainer='Kitmaker',
53
- maintainer_email='kitmaker@nvidia.com',
54
-
55
- # The licence under which the project is released
56
- license='Apache2',
57
- classifiers=[
58
- 'Development Status :: 3 - Alpha',
59
- 'Intended Audience :: Developers',
60
- 'Intended Audience :: Science/Research',
61
- 'Intended Audience :: Information Technology',
62
- 'Topic :: Scientific/Engineering',
63
- 'Topic :: Scientific/Engineering :: Image Recognition',
64
- 'Topic :: Scientific/Engineering :: Artificial Intelligence',
65
- 'Topic :: Software Development :: Libraries',
66
- 'Topic :: Utilities',
67
- 'License :: OSI Approved :: Apache Software License',
68
- 'Programming Language :: Python :: 3.5',
69
- 'Programming Language :: Python :: 3.6',
70
- 'Programming Language :: Python :: 3.7',
71
- 'Programming Language :: Python :: 3.8',
72
- 'Environment :: Console',
73
- 'Natural Language :: English',
74
- 'Operating System :: OS Independent',
75
- ],
76
- platforms=["Linux"],
77
- keywords='nvidia, deep learning, machine learning, supervised learning, unsupervised learning, reinforcement learning, logging',
78
- )
79
-
80
- if len(sys.argv) != 4:
81
- raise RuntimeError("Bad params")
82
-
83
- action=sys.argv[1]
84
- package_name=sys.argv[2]
85
- package_version=sys.argv[3]
86
-
87
- # Need to remove the custom options or distutils will get sad
88
- sys.argv.remove(package_name)
89
- sys.argv.remove(package_version)
90
-
91
- if action == "sdist":
92
-
93
- def maybe_delete_file(filename):
94
- try:
95
- os.remove(filename)
96
- except FileNotFoundError:
97
- pass
98
-
99
- @contextmanager
100
- def setup_sdist_environment(package_name):
101
-
102
- temporary_files = ["README.rst", "ERROR.txt", "PACKAGE_NAME"]
103
- for file in temporary_files:
104
- maybe_delete_file(file)
105
-
106
- with open("PACKAGE_NAME", "w") as f:
107
- f.write(package_name)
108
-
109
- shutil.copyfile("README.rst.in", "README.rst")
110
- shutil.copyfile("ERROR.txt.in", "ERROR.txt")
111
-
112
- def replace_in_file(search_text, new_text, filename):
113
- with fileinput.input(filename, inplace=True) as f:
114
- for line in f:
115
- new_line = line.replace(search_text, new_text)
116
- print(new_line, end='')
117
-
118
- replace_in_file("<PACKAGE_NAME>", package_name.upper(), filename="README.rst")
119
- replace_in_file("==============", "=" * len(package_name), filename="README.rst")
120
-
121
- replace_in_file("<package_name>", package_name, filename="README.rst")
122
- replace_in_file("<package_name>", package_name, filename="ERROR.txt")
123
-
124
- yield
125
-
126
- for file in temporary_files:
127
- maybe_delete_file(file)
128
-
129
- shutil.rmtree("%s.egg-info" % package_name.replace("-", "_"))
130
-
131
- print(f"\n[*] Building {package_name} ...")
132
-
133
- with setup_sdist_environment(package_name):
134
- build_package(package_name, package_version)
135
-
136
- else:
137
- raise RuntimeError(open("ERROR.txt", "r").read())