Skip to content

Instantly share code, notes, and snippets.

@pganssle
Created February 12, 2019 14:24
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 pganssle/04ccf1abbfd2aaf2ec46fa3042e1f274 to your computer and use it in GitHub Desktop.
Save pganssle/04ccf1abbfd2aaf2ec46fa3042e1f274 to your computer and use it in GitHub Desktop.
from setuptools import setup
setup(
name="pkga",
version="0.1.0",
install_requires=["pkgb"],
)
from setuptools import setup
setup(
name="pkgb",
version="0.1.0",
install_requires=["pkga"],
)
from setuptools import setup
setup(
name="pkgc",
version="0.1.0",
install_requires=["pkga"],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment