tamland / kodi-plugin-routing

A routing module for kodi plugins
GNU General Public License v3.0
40 stars 12 forks source link

Add a python setuptools setup.py #26

Closed dagwieers closed 4 years ago

dagwieers commented 5 years ago

This is very convenient for pulling in the module for automated testing. Before this we have to include the module in our project, but using this we can actually pull it directly from Github using:

requirements.txt

git+git://github.com/tamland/kodi-plugin-routing.git@master#egg=routing

This can be tested by adding this to requirements.txt:

git+git://github.com/dagwieers/kodi-plugin-routing.git@setup#egg=routing

And then run

$ sudo pip install -r requirements.txt
Collecting routing from git+git://github.com/dagwieers/kodi-plugin-routing.git@setup#egg=routing (from -r requirements.txt (line 7))
  Cloning git://github.com/dagwieers/kodi-plugin-routing.git (to setup) to /tmp/pip-build-OMyYfj/routing
Installing collected packages: routing
  Running setup.py install for routing ... done
dagwieers commented 4 years ago

Can we get this merged? I would like to use the real git repository, and not my own fork for our Travis CI testing.

dagwieers commented 4 years ago

Three months into this. Can we please get this merged?