Skip to content

Instantly share code, notes, and snippets.

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