Skip to content

Instantly share code, notes, and snippets.

@ryanwilsonperkin
Last active March 11, 2018 19:34
Show Gist options
  • Save ryanwilsonperkin/d8d591e08e0996414eea27b25f4bb68c to your computer and use it in GitHub Desktop.
Save ryanwilsonperkin/d8d591e08e0996414eea27b25f4bb68c to your computer and use it in GitHub Desktop.
pipenv-test-public-package
import sys
sys.stdout.write('This is a public package\n')
from setuptools import setup
setup(
name='pipenv-test-public-package',
version='1.0',
url='https://gist.github.com/ryanwilsonperkin/d8d591e08e0996414eea27b25f4bb68c',
license='MIT',
py_modules=['example_public'],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment