Last active
July 11, 2018 10:19
-
-
Save OrangeDog/1bfc42240657c69b1c04584637d78755 to your computer and use it in GitHub Desktop.
Example python sub-package
This file contains hidden or 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='test-dep-two', | |
version='1.0', | |
install_requires=['pytz'] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment