├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README ├── README.rst ├── contrib ├── pypi-server.conf.example └── pypi-server.service ├── docker-compose.yml ├── docker-entrypoint.py ├── package ├── Dockerfile.bionic ├── Dockerfile.centos7 ├── Dockerfile.debian8 ├── Dockerfile.debian9 ├── Dockerfile.xenial ├── make-deb.py └── make-rpm.py ├── pypi_server ├── __init__.py ├── cache.py ├── db │ ├── __init__.py │ ├── groups.py │ ├── migrator │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── migrations │ │ │ ├── 001_create_tables.py │ │ │ ├── 002_create_default_user.py │ │ │ ├── 003_create_package_tables.py │ │ │ ├── 004_packagefile_add_url_and_fetched.py │ │ │ ├── 005_packagefile_basename_unique.py │ │ │ ├── 006_packageversion_license_textfield.py │ │ │ └── __init__.py │ │ └── model.py │ ├── packages.py │ ├── rules.py │ └── users.py ├── handlers │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── login.py │ │ ├── package.py │ │ ├── packages.py │ │ ├── user.py │ │ ├── users.py │ │ └── version.py │ ├── base.py │ ├── default.py │ ├── index.py │ └── pypi │ │ ├── __init__.py │ │ ├── package.py │ │ ├── proxy │ │ ├── __init__.py │ │ └── client.py │ │ └── simple │ │ ├── __init__.py │ │ ├── files.py │ │ └── packages.py ├── hash_version.py ├── http_cache.py ├── server.py ├── static │ ├── css │ │ ├── simple.css │ │ ├── style.css │ │ └── ui-bootstrap-custom-0.14.3-csp.css │ ├── favicon │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── mstile-144x144.png │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ ├── admin.js │ │ │ ├── index.js │ │ │ ├── navigation.js │ │ │ └── packages.js │ │ └── lib │ │ │ ├── api.js │ │ │ └── modals.js │ ├── partial │ │ ├── admin.html │ │ └── packages.html │ └── vendor │ │ ├── 01-jquery.min.js │ │ ├── 01-jquery.min.js.map │ │ ├── angular │ │ ├── angular.min.js │ │ ├── angular.min.js.map │ │ ├── libs │ │ │ ├── angular-route.min.js │ │ │ ├── angular-route.min.js.map │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-sanitize.min.js.map │ │ │ ├── angular-select2.min.js │ │ │ ├── angular-storage.min.js │ │ │ └── storage.min.js │ │ └── ui-bootstrap-custom-tpls-0.14.3.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── loader.gif │ │ ├── md5.min.js │ │ └── select2 │ │ ├── select2.min.css │ │ └── select2.min.js ├── templates │ ├── index.html │ ├── simple │ │ ├── base.html │ │ ├── files.html │ │ └── packages.html │ └── templates.html └── timeit.py ├── screenshots ├── create_user.png ├── packages.png └── users.png ├── setup.py ├── tests ├── __init__.py ├── test_login.py ├── test_user.py └── test_users.py └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/README.rst -------------------------------------------------------------------------------- /contrib/pypi-server.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/contrib/pypi-server.conf.example -------------------------------------------------------------------------------- /contrib/pypi-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/contrib/pypi-server.service -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/docker-entrypoint.py -------------------------------------------------------------------------------- /package/Dockerfile.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/package/Dockerfile.bionic -------------------------------------------------------------------------------- /package/Dockerfile.centos7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/package/Dockerfile.centos7 -------------------------------------------------------------------------------- /package/Dockerfile.debian8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/package/Dockerfile.debian8 -------------------------------------------------------------------------------- /package/Dockerfile.debian9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/package/Dockerfile.debian9 -------------------------------------------------------------------------------- /package/Dockerfile.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/package/Dockerfile.xenial -------------------------------------------------------------------------------- /package/make-deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/package/make-deb.py -------------------------------------------------------------------------------- /package/make-rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/package/make-rpm.py -------------------------------------------------------------------------------- /pypi_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/__init__.py -------------------------------------------------------------------------------- /pypi_server/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/cache.py -------------------------------------------------------------------------------- /pypi_server/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/__init__.py -------------------------------------------------------------------------------- /pypi_server/db/groups.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # encoding: utf-8 3 | 4 | -------------------------------------------------------------------------------- /pypi_server/db/migrator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/__init__.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/actions.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/migrations/001_create_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/migrations/001_create_tables.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/migrations/002_create_default_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/migrations/002_create_default_user.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/migrations/003_create_package_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/migrations/003_create_package_tables.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/migrations/004_packagefile_add_url_and_fetched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/migrations/004_packagefile_add_url_and_fetched.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/migrations/005_packagefile_basename_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/migrations/005_packagefile_basename_unique.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/migrations/006_packageversion_license_textfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/migrations/006_packageversion_license_textfield.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/migrations/__init__.py -------------------------------------------------------------------------------- /pypi_server/db/migrator/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/migrator/model.py -------------------------------------------------------------------------------- /pypi_server/db/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/packages.py -------------------------------------------------------------------------------- /pypi_server/db/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/rules.py -------------------------------------------------------------------------------- /pypi_server/db/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/db/users.py -------------------------------------------------------------------------------- /pypi_server/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/__init__.py -------------------------------------------------------------------------------- /pypi_server/handlers/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/api/__init__.py -------------------------------------------------------------------------------- /pypi_server/handlers/api/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/api/login.py -------------------------------------------------------------------------------- /pypi_server/handlers/api/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/api/package.py -------------------------------------------------------------------------------- /pypi_server/handlers/api/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/api/packages.py -------------------------------------------------------------------------------- /pypi_server/handlers/api/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/api/user.py -------------------------------------------------------------------------------- /pypi_server/handlers/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/api/users.py -------------------------------------------------------------------------------- /pypi_server/handlers/api/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/api/version.py -------------------------------------------------------------------------------- /pypi_server/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/base.py -------------------------------------------------------------------------------- /pypi_server/handlers/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/default.py -------------------------------------------------------------------------------- /pypi_server/handlers/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/index.py -------------------------------------------------------------------------------- /pypi_server/handlers/pypi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/pypi/__init__.py -------------------------------------------------------------------------------- /pypi_server/handlers/pypi/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/pypi/package.py -------------------------------------------------------------------------------- /pypi_server/handlers/pypi/proxy/__init__.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | -------------------------------------------------------------------------------- /pypi_server/handlers/pypi/proxy/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/pypi/proxy/client.py -------------------------------------------------------------------------------- /pypi_server/handlers/pypi/simple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/pypi/simple/__init__.py -------------------------------------------------------------------------------- /pypi_server/handlers/pypi/simple/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/pypi/simple/files.py -------------------------------------------------------------------------------- /pypi_server/handlers/pypi/simple/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/handlers/pypi/simple/packages.py -------------------------------------------------------------------------------- /pypi_server/hash_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/hash_version.py -------------------------------------------------------------------------------- /pypi_server/http_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/http_cache.py -------------------------------------------------------------------------------- /pypi_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/server.py -------------------------------------------------------------------------------- /pypi_server/static/css/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/css/simple.css -------------------------------------------------------------------------------- /pypi_server/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/css/style.css -------------------------------------------------------------------------------- /pypi_server/static/css/ui-bootstrap-custom-0.14.3-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/css/ui-bootstrap-custom-0.14.3-csp.css -------------------------------------------------------------------------------- /pypi_server/static/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pypi_server/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/favicon.ico -------------------------------------------------------------------------------- /pypi_server/static/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /pypi_server/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/js/app.js -------------------------------------------------------------------------------- /pypi_server/static/js/controllers/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/js/controllers/admin.js -------------------------------------------------------------------------------- /pypi_server/static/js/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/js/controllers/index.js -------------------------------------------------------------------------------- /pypi_server/static/js/controllers/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/js/controllers/navigation.js -------------------------------------------------------------------------------- /pypi_server/static/js/controllers/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/js/controllers/packages.js -------------------------------------------------------------------------------- /pypi_server/static/js/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/js/lib/api.js -------------------------------------------------------------------------------- /pypi_server/static/js/lib/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/js/lib/modals.js -------------------------------------------------------------------------------- /pypi_server/static/partial/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/partial/admin.html -------------------------------------------------------------------------------- /pypi_server/static/partial/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/partial/packages.html -------------------------------------------------------------------------------- /pypi_server/static/vendor/01-jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/01-jquery.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/01-jquery.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/01-jquery.min.js.map -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/angular.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/angular.min.js.map -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/libs/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/libs/angular-route.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/libs/angular-route.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/libs/angular-route.min.js.map -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/libs/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/libs/angular-sanitize.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/libs/angular-sanitize.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/libs/angular-sanitize.min.js.map -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/libs/angular-select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/libs/angular-select2.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/libs/angular-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/libs/angular-storage.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/libs/storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/libs/storage.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/angular/ui-bootstrap-custom-tpls-0.14.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/angular/ui-bootstrap-custom-tpls-0.14.3.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/loader.gif -------------------------------------------------------------------------------- /pypi_server/static/vendor/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/md5.min.js -------------------------------------------------------------------------------- /pypi_server/static/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /pypi_server/static/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/static/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /pypi_server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/templates/index.html -------------------------------------------------------------------------------- /pypi_server/templates/simple/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/templates/simple/base.html -------------------------------------------------------------------------------- /pypi_server/templates/simple/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/templates/simple/files.html -------------------------------------------------------------------------------- /pypi_server/templates/simple/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/templates/simple/packages.html -------------------------------------------------------------------------------- /pypi_server/templates/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/templates/templates.html -------------------------------------------------------------------------------- /pypi_server/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/pypi_server/timeit.py -------------------------------------------------------------------------------- /screenshots/create_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/screenshots/create_user.png -------------------------------------------------------------------------------- /screenshots/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/screenshots/packages.png -------------------------------------------------------------------------------- /screenshots/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/screenshots/users.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/tests/test_login.py -------------------------------------------------------------------------------- /tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/tests/test_user.py -------------------------------------------------------------------------------- /tests/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/tests/test_users.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosquito/pypi-server/HEAD/tox.ini --------------------------------------------------------------------------------