Calmcode - cookiecutter: setup.py

setup.py

1 2 3 4 5 6 7 8

Let's consider adding a setup.py file to our project with cookiecutter.

Here's an example of the setup.py file;

from setuptools import setup

setup(
    name="{{cookiecutter.project_slug}}",
    version="0.0.1"
)