Hi All,
I am new to git and probably this is a dumb question...
I am trying to make my package installable via pip. I added the
setup.py which sets required attributes as follows:
setup(
name = 'teknolab-django-reputation',
version = '0.1',
description = 'Generic user reputation application for Django',
url = 'http://github.com/teknolab/teknolab-django-reputation',
packages = ['reputation', 'reputation.templatetags'],
classifiers = [...],
)
I can install this package via pip when using the local copy of the
application, however, when I try to install from github with:
pip install [email protected]:teknolab/teknolab-django-
reputation.git -E test_env/
I get this value error:
ValueError: ('Expected version spec in', '[email protected]:teknolab/
teknolab-django-reputation.git', 'at', '[email protected]:teknolab/
teknolab-django-reputation.git')
Should I set the version somewhere other then the setup.py?
Thanks,
oMat
--
You received this message because you are subscribed to the Google Groups
"GitHub" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/github?hl=en.