Skip to content

Commit b201217

Browse files
author
Laurent Pinson
committed
package infos
1 parent 03ce4ff commit b201217

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ include INSTALL.md
44
include setup.py
55
include tests/__init__.py
66
include pypreprocessor/__init__.py
7+
include pypreprocessor/__main__.py

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ The syntax for pypreprocessor uses a select subset of the stanard c-style prepro
7575
#ifdef constant
7676
```
7777

78+
* makes the subsequent block of code available if the specified condition is set
79+
```python
80+
#if boolean_condition
81+
```
82+
7883
* makes the subsequent block of code available if all of the preceding #ifdef statements return false
7984
```python
8085
#else

pypreprocessor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# pypreprocessor.py
33

44
__author__ = 'Evan Plaice'
5-
__coauthor__ = 'Hendi O L, Epikem'
5+
__coauthor__ = 'Hendi O L, Epikem, Laurent Pinson'
66
__version__ = '0.8'
77

88
import sys

0 commit comments

Comments
 (0)