PyProd 0.1.0__py3-none-any.whl → 0.2.0.post1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pyprod/prod.py +1 -0
- {pyprod-0.1.0.dist-info → pyprod-0.2.0.post1.dist-info}/METADATA +4 -8
- pyprod-0.2.0.post1.dist-info/RECORD +11 -0
- pyprod-0.1.0.dist-info/RECORD +0 -11
- {pyprod-0.1.0.dist-info → pyprod-0.2.0.post1.dist-info}/WHEEL +0 -0
- {pyprod-0.1.0.dist-info → pyprod-0.2.0.post1.dist-info}/entry_points.txt +0 -0
- {pyprod-0.1.0.dist-info → pyprod-0.2.0.post1.dist-info}/licenses/LICENSE +0 -0
pyprod/prod.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: PyProd
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.2.0.post1
|
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/
|
@@ -17,12 +17,11 @@ Description-Content-Type: text/x-rst
|
|
17
17
|
PyProd - More Makeable than Make
|
18
18
|
=================================
|
19
19
|
|
20
|
-
PyProd is a Python script that can be used as an alternative to Makefile. By leveraging Python's versatility, it enables you to define build rules and dependencies programmatically, allowing for dynamic configurations, integration with existing Python libraries, and custom build logic not easily achievable with traditional Makefiles. For detailed documentation, please refer to the `official documentation <https://
|
20
|
+
PyProd is a Python script that can be used as an alternative to Makefile. By leveraging Python's versatility, it enables you to define build rules and dependencies programmatically, allowing for dynamic configurations, integration with existing Python libraries, and custom build logic not easily achievable with traditional Makefiles. For detailed documentation, please refer to the `official documentation <https://pyprod.readthedocs.io/en/latest/>`_.
|
21
21
|
|
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.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
pyprod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
pyprod/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
3
|
+
pyprod/main.py,sha256=nS0mcLy3Ix7ydnX1Pu5g7ceLzhh6DndwJWO5sjO_qWg,2580
|
4
|
+
pyprod/prod.py,sha256=poLehE5Gs_vEZvKrSdMicF016tQeaMMAnFc76ssPQQY,14586
|
5
|
+
pyprod/utils.py,sha256=oiiUkSbeqTazbtJ6gz7ZKqG1OvAeV-nV9u_3Y0DCOOM,401
|
6
|
+
pyprod/venv.py,sha256=_riw56YQvUOSd55u_1m9ElsqPdjM5qVvIZP6dr9Fzt4,1051
|
7
|
+
pyprod-0.2.0.post1.dist-info/METADATA,sha256=WnpzS2zWCnRZxR9cHjrfkI7yUd742pp5idOzdNyJ7Fk,2483
|
8
|
+
pyprod-0.2.0.post1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
9
|
+
pyprod-0.2.0.post1.dist-info/entry_points.txt,sha256=zFycf8BYSMRDTiI0jftmcvtkf9XM4MZ4BL3JaIer_ZM,44
|
10
|
+
pyprod-0.2.0.post1.dist-info/licenses/LICENSE,sha256=OtPgwnlLrsVEYPnTraun5AqftAT5vUv4rIan-qYj7nE,1071
|
11
|
+
pyprod-0.2.0.post1.dist-info/RECORD,,
|
pyprod-0.1.0.dist-info/RECORD
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
pyprod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
pyprod/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
3
|
-
pyprod/main.py,sha256=nS0mcLy3Ix7ydnX1Pu5g7ceLzhh6DndwJWO5sjO_qWg,2580
|
4
|
-
pyprod/prod.py,sha256=pVNAc_piwsMo0KaML9AChrm_TnXIeZK_cMT6MZ7abWo,14564
|
5
|
-
pyprod/utils.py,sha256=oiiUkSbeqTazbtJ6gz7ZKqG1OvAeV-nV9u_3Y0DCOOM,401
|
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,,
|
File without changes
|
File without changes
|
File without changes
|