Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gsy0911/template-python

add setup.py, sphinx
https://github.com/gsy0911/template-python

Last synced: 24 days ago
JSON representation

add setup.py, sphinx

Awesome Lists containing this project

README

        

# template-python

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)

# setup

## modify files

* add {project_name} folder

* modify `pyproject.toml`
* set `{project_name}`
* set `{your_name}`
* set `{your_email}`
* remove un-necessary package

* modify `Makefile`
* set `{your_module}`

* modify `setup.py`
* set `{...}`

* modify `docs/conf.py`
* set `{project_name}`
* set `{author}`

## install venv with poetry

```shell script
$ poetry install

```