yutanakamura-tky / template

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What's this?

This is a template repository customized for quick set up of research projects.

Requirements

  • Python => 3.8

How to use this

  1. Install Poetry:
curl -sSL https://install.python-poetry.org | python3 -
  1. Change Config:
poetry config virtualenvs.in-project true
  1. Fill the blank in pyproject.toml with your favorite project name:
vi /path/to/project/pyproject.toml
(pyproject.toml)

[tool.poetry]
name = "" # REPLACE WITH YOUR FAVORITE PROJECT NAME
...
  1. Update your project:
poetry update
  1. Install packages using Poetry:
cd /path/to/project
poetry install
  1. Install pre-commit hook:
cd /path/to/project
pre-commit install

About


Languages

Language:Python 100.0%