Skip to content

Instantly share code, notes, and snippets.

@rwcitek
Last active February 27, 2025 05:02
Show Gist options
  • Save rwcitek/3fd659491308d3db6701da3389f4799d to your computer and use it in GitHub Desktop.
Save rwcitek/3fd659491308d3db6701da3389f4799d to your computer and use it in GitHub Desktop.
python module
def foo():
return("hello, world")
from setuptools import setup, find_packages
setup(
name='foobar', # Name of the module
version='0.1',
packages=find_packages(),
install_requires=[], # Add any dependencies here
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment