pynt
pynt copied to clipboard
A pynt of Python build.
In the README example, Python 2 is mixed with Python 3: ``` @task() def clean(): '''Clean build directory.''' print 'Cleaning build directory...' @task() def _copy_resources(): '''Copy resource files. This is...
Hi, Sometimes the task name matching feature can be a dangerous thing and one might only want to allow exactly matching task names as arguments. This merge request introduces the...
Use case: I have a main task that performs actions on items of an iterable, so instead of specifying the one-item task as dependency, I call it directly. Here's my...
Is there any interest in the community for a Markdown output from the @task() docstrings? If so, I can submit a PR. In my project, I adopted the standard of:...
It happens because of this: https://github.com/rags/pynt/blob/c0fbbc4c0c6c1ccbbf11a744fb62d33c78ac0ae0/build.py#L18 In my system, I have both Python 2 and 3 (maybe it's worth dropping Python 2 support already?). Executables are named py.test and py.test3....
The directory of the build script is not part of Python's import path inside the pynt process, hence it is not possible to import modules which reside beneath the same...
I have some functions I wanted to get out of the build.py file because they were getting bigger than the build script. I tried importing, e.g. import foo, but this...
Currently it is impossible to integrate pynt to other projects. Expose build method will help to resolve this.
I previously had no problem installing via pip pynt. Recently I changed my setup and had to reinstall the modules I frequently used, and came up with this new "pynt"....