Skip to content

Instantly share code, notes, and snippets.

@presheaf
Created March 21, 2018 13:17
Show Gist options
  • Save presheaf/d5cf7710a5bcfce052125f400d814096 to your computer and use it in GitHub Desktop.
Save presheaf/d5cf7710a5bcfce052125f400d814096 to your computer and use it in GitHub Desktop.
I might as well just put a setup.py here if I'm going to keep copy/pasting it anyway. Works fine to install with e.g. 'pip install --user my_package_dir'
import os
from setuptools import setup, find_packages
setup(
name = "my_package",
version = "0.0.11",
packages=find_packages(),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment