-
In latest Visual studio 2017I go to File --> New -->--> From Cookiecutter. Then I select an arbitrary template and click Run or Next. I see in the output window that the repository is cloned, but then…
-
* Date you used Cookiecutter PyPackage:
20180215
* Cookiecutter version used, if any:
Version: 1.3.0-2
* Python version, if any:
Version: 2.7.11-1
* Operating System:
Distributor ID: Ubuntu
De…
-
## Location within the Course
* Section: 3
* Lesson: 6
* Language: english
## Description
Readthedocs is not building automated docs of modules because a `.gitignore` file is in `docs`…
-
- See README.rst for an example of a pyup.io badge
- Open `{{cookiecutter.project_slug}}/README.rst`. Look for its requires.io badge and change it to the pyup.io badge
- Update the root README and the…
-
We should have this service (or likewise) to keep track of our Python deps:
https://pyup.io/repos/github/audreyr/cookiecutter-pypackage/
Similar would be useful for NPM dependencies
-
* Date you used Cookiecutter PyPackage: 25 Dec, '17.
* Python version, if any: >= 3.5
* Operating System: Windows 10
### Description
I reached step 5 given in Tutorials webpage. So currently m…
-
Hello,
it will be nice to enable Landscape https://landscape.io/
It can help to track many bugs (even before you noticed them)
For example
this https://github.com/manahl/arctic/issues/49
https://g…
-
``` python
from plumbum import local
git = local['git']
cookiecutter('cookiecutter-pypackage', no_input=True, parameters=params)
git('init %s' % locals())
git('ci -am "Start" *.* .coveragerc .env .gi…
-
Hello,
I'm repeatedly facing python language server produce a `Server Error' messages when jumping to definition between multiple projects.
I think it's linked with issue #263, but for me it happens…
-
Using `requirements.txt` I can do it:
```python
from pip.req import parse_requirements
requirements = [str(r.req) for r in
parse_requirements('requirements.txt', session=False)]
…