Giter Site home page Giter Site logo

lee-w / cookiecutter-python-template Goto Github PK

View Code? Open in Web Editor NEW
23.0 23.0 9.0 3.33 MB

Python Project template that supports PyPI publishment and basic docker image

Home Page: https://lee-w.github.io/cookiecutter-python-template/

License: MIT License

Python 97.05% Dockerfile 2.95%
template

cookiecutter-python-template's Introduction

Hi ๐Ÿ‘‹ Wei Lee here

I'm a

I enjoy automating tedious tasks and creating high-quality code. Enjoy participating in open-source communities and contributing to open-source projects. Traveling is also a passion of mine, and I often use PyCon as an opportunity to explore new places. I have attended PyCon conferences in Taiwan ๐Ÿ‡น๐Ÿ‡ผ, the United States ๐Ÿ‡บ๐Ÿ‡ธ, Japan ๐Ÿ‡ฏ๐Ÿ‡ต, Canada ๐Ÿ‡จ๐Ÿ‡ฆ, Remote Python Pizza ๐Ÿ•, and Euro Python (remotely) ๐Ÿ‡ช๐Ÿ‡บ.

I share my technical notes, book digests, and occasional thoughts on my main blog Those aren't written down are meant to be forgotten. If you're interested in topics such as cooking, anime, and travel, I chat about those things on Those things no one cares about.


You can find me through


I use Neovim Sublime Text macOS Firefox Spotify Apache Airflow


๐Ÿ–Š๏ธ Blogs

Those aren't written down are meant to be forgotten

Those things no one cares about

๐Ÿ–ฅ๏ธ Recently working on

  1. ๐Ÿ—ฃ Commented on #40194 in apache/airflow
  2. ๐ŸŽ‰ Merged PR #1544 in astronomer/astronomer-providers
  3. ๐ŸŽ‰ Merged PR #1546 in astronomer/astronomer-providers
  4. ๐ŸŽ‰ Merged PR #169 in Lee-W/cookiecutter-python-template
  5. ๐Ÿ—ฃ Commented on #1543 in astronomer/astronomer-providers
  6. โŒ Closed PR #1543 in astronomer/astronomer-providers
  7. ๐Ÿ’ช Opened PR #1547 in astronomer/astronomer-providers
  8. ๐ŸŽ‰ Merged PR #65 in pycontw/mail_handler
  9. ๐ŸŽ‰ Merged PR #1163 in commitizen-tools/commitizen
  10. ๐ŸŽ‰ Merged PR #168 in Lee-W/cookiecutter-python-template

โญ GitHub Stat

committers.top badge (Taiwan)

Wei Lee's github activity graph

cookiecutter-python-template's People

Contributors

actions-user avatar dependabot[bot] avatar frankyang0529 avatar github-actions[bot] avatar iknowright avatar lee-w avatar rainrainwu avatar tai271828 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cookiecutter-python-template's Issues

Add a general Dockerfile for poetry-managed python project

How about adding a default Dockerfile? I often need to check the process of installing poetry and pipx while dockerizing a service, a default general Dockerfile is a great help.

For example, like this:

FROM python:3.8-slim

ENV PYTHONUNBUFFERED=1
ENV PATH=$PATH:/root/.local/bin
WORKDIR /project

COPY . /project/

    # Install pipx
RUN python3 -m pip install --upgrade pip && \
    python3 -m pip install --user pipx --no-warn-script-location && \
    python3 -m pipx ensurepath && \
    # Install poetry
    apt-get update -y && \
    apt-get install curl -y && \
    curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - && \
    . $HOME/.poetry/env && \
    poetry config virtualenvs.create false && \
    poetry install --no-dev --no-interaction --no-ansi

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.