Skip to content

hallaj/inupypi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

image

A Multi Repository PyPI Server Implementation in Python Flask

Installation Instructions

From source

Clone the source code from the Github's repository:

git clone https://github.com/hallaj/inupypi.git

:

Building the application

Running the application

Inupypi can be run using the usual apache mod_wsgi setup as well as stand alone mode.

As Standalone WSGI Server

Apache mod_wsgi

  1. To run using apache mod_wsgi, create the following file and save it as inupypi.wsgi:
  1. Add the following Apache configuration to use the above defined wsgi file:
<VirtualHost *:80>
    ServerName      SERVER_NAME

    WSGIScriptAlias / /PATH/TO/inupypi.wsgi
    WSGIDaemonProcess inupypi user=APACHE_USER group=APACHE_GROUP home=/PATH/TO/INUPYPI python-path=/PATH/TO/PYTHON/SITE-PACKAGES/WHERE/INUPYPI/IS/INSTALLED

    <Location />
        WSGIProcessGroup inupypi
        WSGIPassAuthorization On
    </Location>
</VirtualHost>

FAQ: Why another pypiserver application ?

  1. We could not find another pypiserver that supported multiple repositories.
  2. We wanted to have templates with our pypi server so that formatting can be easily done.
  3. We had a few ideas where we wanted to bring our pypi server that were not compatible or accepted by one of the pypi server implementations.

TODO

  1. Create automated processes to generate all of the steps above to make the process less manual.
  2. Auto resolving and updating of package versions.

Tests

To run the tests:

sh
  python setup.py test

Bitdeli badge

About

A Multi Repository PyPI Server Project

Resources

Stars

Watchers

Forks

Packages

No packages published