wting / python-graph

Automatically exported from code.google.com/p/python-graph
Other
5 stars 4 forks source link

please upload to pypi #123

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hello!

Thanks, firstly for your work on python-graph.  We're using hypergraphs to help 
study discourse structure. 

I was wondering if you would feel ready to upload your python-graph and 
python-graph-core packages to PyPI.

I admit I haven't tried anything of the sort myself, but this guide makes it 
look easy at least
http://peterdowns.com/posts/first-time-with-pypi.html

Doing so would simplify installation for users of my packages (see 
http://kowey.github.io/educe/ ).  At the moment, I have to put lines like the 
following in my requirements.txt files, which only works with pip 1.5 or higher.

--allow-external python-graph-core
--allow-external python-graph-dot
--allow-unverified python-graph-core
--allow-unverified python-graph-dot

If python-graph and friends could instead go on PyPI, I think we would save a 
lot of headscratching and installation misery from my users

Many thanks!

Original issue reported on code.google.com by eric....@gmail.com on 18 Sep 2014 at 1:39

GoogleCodeExporter commented 9 years ago
It's already on PyPI:

https://pypi.python.org/pypi/python-graph-core/
https://pypi.python.org/pypi/python-graph-dot/

You can install the packages with pip or easy_install.

Original comment by pe...@pmatiello.me on 19 Sep 2014 at 1:23

GoogleCodeExporter commented 9 years ago
Thank-you for the fast reply! Unfortunately, while the package is listed in the 
pypi index, the actual tarballs are both externally hosted and unverifiable

$ pip --version
pip 1.5.6 from /Users/kowey/.virtualenvs/scratch/lib/python2.7/site-packages 
(python 2.7)

$ pip install python-graph
Downloading/unpacking python-graph
  Could not find any downloads that satisfy the requirement python-graph
  Some externally hosted files were ignored (use --allow-external python-graph to allow).
Cleaning up...
No distributions at all found for python-graph
Storing debug log for failure in /Users/kowey/.pip/pip.log

This makes it rather difficult to distribute packages that require python-graph.

Could I trouble you to look into actually uploading the python-graph-core and 
python-graph-dot tarballs themselves on to PyPI?  It would very much simplify 
installation of packages from there.  It's worth comparing depparse with 
python-graph as an example, no special flags there :-):

* https://pypi.python.org/pypi/depparse/0.1.0
* https://pypi.python.org/pypi/python-graph/1.8.2 

Original comment by eric....@gmail.com on 19 Sep 2014 at 4:32