-
-
Save pganssle/04ccf1abbfd2aaf2ec46fa3042e1f274 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup | |
setup( | |
name="pkga", | |
version="0.1.0", | |
install_requires=["pkgb"], | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup | |
setup( | |
name="pkgb", | |
version="0.1.0", | |
install_requires=["pkga"], | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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