Skip to content

Instantly share code, notes, and snippets.

@OrangeDog
Last active July 11, 2018 10:20
Show Gist options
  • Save OrangeDog/a14f81ef84df0325d4072e81238c88d2 to your computer and use it in GitHub Desktop.
Save OrangeDog/a14f81ef84df0325d4072e81238c88d2 to your computer and use it in GitHub Desktop.
Example python package
from setuptools import setup
setup(
name='test-dep-one',
version='1.0',
install_requires=[
'python-dateutil',
'test-dep-two'
],
dependency_links=[
'git+ssh://git@gist.github.com/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