Last active
July 11, 2018 10:20
-
-
Save OrangeDog/a14f81ef84df0325d4072e81238c88d2 to your computer and use it in GitHub Desktop.
Example python package
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='test-dep-one', | |
version='1.0', | |
install_requires=[ | |
'python-dateutil', | |
'test-dep-two' | |
], | |
dependency_links=[ | |
'git+ssh://[email protected]/1bfc42240657c69b1c04584637d78755.git#egg=test-dep-two-1.0' | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment