Generate a Python package project using the Python Cookiecutter package
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

3 år sedan
3 år sedan
123456789101112131415161718192021
  1. # cookiecutter-pypackage
  2. Generate a Python package project using the Python Cookiecutter package
  3. ## Usage
  4. Generate a Python package project:
  5. ```
  6. cookiecutter https://git.natrinicle.com/natrinicle/cookiecutter-pypackage.git
  7. ```
  8. About the package requirements:
  9. Install the dev requirements in your local machine by running:
  10. pip install -r requirements/dev.txt
  11. Requirements for Unit testing can be found in requirements/test.txt
  12. Requirements for Prod build can be found in requirements/prod.txt
  13. Prod requirements are reused in both Dev and Test requirements.