PyProd 0.1.0__py3-none-any.whl → 0.2.0__py3-none-any.whl

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.
pyprod/prod.py CHANGED
@@ -3,6 +3,7 @@ import concurrent.futures
3
3
  import datetime
4
4
  import importlib
5
5
  import importlib.machinery
6
+ import importlib.util
6
7
  import logging
7
8
  import os
8
9
  import re
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyProd
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: PyProd: More Makeable than Make
5
5
  Project-URL: Homepage, https://github.com/atsuoishimoto/pyprod
6
6
  Project-URL: Documentation, https://pyprod.readthedocs.io/en/latest/
@@ -22,7 +22,6 @@ PyProd is a Python script that can be used as an alternative to Makefile. By lev
22
22
 
23
23
  Features
24
24
  --------
25
-
26
25
  - Define build rules in Python: Use Python functions to create clear and concise build logic.
27
26
  - Specify dependencies for each rule: Automatically track and resolve dependencies between files, such as source files and headers.
28
27
  - Easily extendable with custom Python functions: Integrate custom logic for specialized tasks, like code linting or deployment.
@@ -30,7 +29,6 @@ Features
30
29
 
31
30
  Installation
32
31
  --------------
33
-
34
32
  To install PyProd, simply use pip:
35
33
 
36
34
  .. code-block:: sh
@@ -39,9 +37,7 @@ To install PyProd, simply use pip:
39
37
 
40
38
  Usage
41
39
  -----
42
-
43
- In PyProd, a traditional Makefile for C can be expressed as a Python script like this:
44
-
40
+ With PyProd, a traditional Makefile for C can be expressed as a Python script like this:
45
41
 
46
42
  .. code-block:: python
47
43
 
@@ -63,6 +59,7 @@ In PyProd, a traditional Makefile for C can be expressed as a Python script like
63
59
 
64
60
  all = "hello.exe"
65
61
 
62
+
66
63
  To run the build script, simply execute:
67
64
 
68
65
  .. code-block:: sh
@@ -72,5 +69,4 @@ To run the build script, simply execute:
72
69
 
73
70
  License
74
71
  -------
75
-
76
72
  PyProd is licensed under the MIT License. See the `LICENSE <LICENSE>`_ file for more details.
@@ -1,11 +1,11 @@
1
1
  pyprod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  pyprod/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
3
  pyprod/main.py,sha256=nS0mcLy3Ix7ydnX1Pu5g7ceLzhh6DndwJWO5sjO_qWg,2580
4
- pyprod/prod.py,sha256=pVNAc_piwsMo0KaML9AChrm_TnXIeZK_cMT6MZ7abWo,14564
4
+ pyprod/prod.py,sha256=poLehE5Gs_vEZvKrSdMicF016tQeaMMAnFc76ssPQQY,14586
5
5
  pyprod/utils.py,sha256=oiiUkSbeqTazbtJ6gz7ZKqG1OvAeV-nV9u_3Y0DCOOM,401
6
6
  pyprod/venv.py,sha256=_riw56YQvUOSd55u_1m9ElsqPdjM5qVvIZP6dr9Fzt4,1051
7
- pyprod-0.1.0.dist-info/METADATA,sha256=KfxGRpJW-_Vjs5O-r9IGOTjdTm29K4R8_eh-8TVMf98,2470
8
- pyprod-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
9
- pyprod-0.1.0.dist-info/entry_points.txt,sha256=zFycf8BYSMRDTiI0jftmcvtkf9XM4MZ4BL3JaIer_ZM,44
10
- pyprod-0.1.0.dist-info/licenses/LICENSE,sha256=OtPgwnlLrsVEYPnTraun5AqftAT5vUv4rIan-qYj7nE,1071
11
- pyprod-0.1.0.dist-info/RECORD,,
7
+ pyprod-0.2.0.dist-info/METADATA,sha256=eNMPeqzwuyEaK-fE7bWBkdkJ2DwThKJPuFxh5h84mAs,2468
8
+ pyprod-0.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
9
+ pyprod-0.2.0.dist-info/entry_points.txt,sha256=zFycf8BYSMRDTiI0jftmcvtkf9XM4MZ4BL3JaIer_ZM,44
10
+ pyprod-0.2.0.dist-info/licenses/LICENSE,sha256=OtPgwnlLrsVEYPnTraun5AqftAT5vUv4rIan-qYj7nE,1071
11
+ pyprod-0.2.0.dist-info/RECORD,,
File without changes