Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cjerdonek/arugula
A sample Python 3 project from which to start projects
https://github.com/cjerdonek/arugula
Last synced: 16 days ago
JSON representation
A sample Python 3 project from which to start projects
- Host: GitHub
- URL: https://github.com/cjerdonek/arugula
- Owner: cjerdonek
- License: mit
- Created: 2014-09-28T21:31:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-29T18:47:29.000Z (over 10 years ago)
- Last Synced: 2024-03-01T09:44:49.529Z (11 months ago)
- Language: Python
- Homepage:
- Size: 160 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Arugula
=======This is a sample Python 3 project from which to start new projects.
It demonstrates an initial project structure.Develop
-------To develop the source code locally, clone the repository.
Then create a virtual environment. You can do this, for example, using
[pyvenv][venv]. Simply run the following from the repository root:$ pyvenv .pyvenv
$ source .pyvenv/bin/activateAlternatively, you can use virtualenv (and virtualenvwrapper). See
also the recommendations in the ["Python Packaging User Guide"][pug].Then install the source code in develop mode:
$ pip install -e .
[pug]: https://packaging.python.org/en/latest/tutorial.html
[venv]: https://docs.python.org/3/library/venv.html