Generate a Python package project using the Python Cookiecutter package
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
před 3 roky
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.