Skip to content

Instantly share code, notes, and snippets.

@ThatXliner
Created July 30, 2020 21:37
Show Gist options
  • Save ThatXliner/e65f0b6a16f97ff20f2fbbf49416d307 to your computer and use it in GitHub Desktop.
Save ThatXliner/e65f0b6a16f97ff20f2fbbf49416d307 to your computer and use it in GitHub Desktop.
A minimal example of a setup.py
from setuptools import setup
setup(
name="my_package", # Or some other name that isn't taken on pypi.org
version="0.1.0", # Or whatever versioning scheme you prefer
description='A description',
author='John Doe',
author_email='john.doe@example.com',
packages=["package_folder"],
license='MIT', # Or your license
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment