flake-template-hell/templates/python/python-app/setup.py
Artur Manuel edcf6f758e
repo: init
welcome 👋 to my world 🌍
2024-08-11 08:22:48 +01:00

11 lines
251 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='python-app',
version='0.1.0',
# Modules to import from other scripts:
packages=find_packages(),
# Executables
scripts=["python-app"],
)