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"
)
cookiecutter: setup.py
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"
)