├── .dockerignore ├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.rst ├── development.ini ├── development.mysql.ini ├── development.pg.ini ├── docker-compose.yml ├── docker ├── create_database_pg.py └── entrypoint.sh ├── docs ├── CHANGES.rst ├── Makefile ├── README.rst ├── conf.py └── index.rst ├── message-extraction.ini ├── pyshop.sample.ini ├── pyshop.sample.service ├── pyshop ├── __init__.py ├── bin │ ├── __init__.py │ ├── install.py │ ├── migrate.py │ ├── migration │ │ ├── __init__.py │ │ ├── migr_0_7_5.py │ │ └── migr_1_2_3.py │ └── shell.py ├── compat.py ├── config.py ├── helpers │ ├── __init__.py │ ├── authentication.py │ ├── download.py │ ├── i18n.py │ ├── pypi.py │ ├── restxt.py │ └── sqla.py ├── locale │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── pyshop.po │ └── pyshop.pot ├── models.py ├── security.py ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── classifications.json │ ├── favicon.ico │ ├── js │ │ ├── bootstrap3-typeahead.js │ │ └── jquery-1.10.2.min.js │ ├── pygments.css │ ├── pyramid-small.png │ ├── pyramid.png │ └── signin.css ├── templates │ ├── pyshop │ │ ├── account │ │ │ ├── create.html │ │ │ ├── delete.html │ │ │ ├── edit.html │ │ │ └── list.html │ │ ├── form_layout.html │ │ ├── layout.html │ │ ├── nav.html │ │ ├── package │ │ │ ├── list.html │ │ │ ├── purge.html │ │ │ └── show.html │ │ ├── simple │ │ │ ├── create.html │ │ │ ├── list.html │ │ │ └── show.html │ │ └── user │ │ │ ├── change_password.html │ │ │ └── edit.html │ └── shared │ │ ├── base_layout.html │ │ ├── footer_buttons.html │ │ ├── form_delete.html │ │ ├── form_layout.html │ │ ├── layout.html │ │ ├── login.html │ │ └── paging.html ├── tests │ ├── __init__.py │ ├── case.py │ ├── conf.py │ ├── test_models.py │ ├── test_security.py │ └── views │ │ ├── __init__.py │ │ ├── test_account.py │ │ ├── test_package.py │ │ ├── test_simple.py │ │ └── test_user.py └── views │ ├── __init__.py │ ├── account.py │ ├── base.py │ ├── credentials.py │ ├── package.py │ ├── repository.py │ ├── simple.py │ ├── user.py │ └── xmlrpc.py ├── setup.cfg ├── setup.py └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/README.rst -------------------------------------------------------------------------------- /development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/development.ini -------------------------------------------------------------------------------- /development.mysql.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/development.mysql.ini -------------------------------------------------------------------------------- /development.pg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/development.pg.ini -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/create_database_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/docker/create_database_pg.py -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docs/CHANGES.rst: -------------------------------------------------------------------------------- 1 | ../CHANGES.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- 1 | ../README.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/docs/index.rst -------------------------------------------------------------------------------- /message-extraction.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/message-extraction.ini -------------------------------------------------------------------------------- /pyshop.sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop.sample.ini -------------------------------------------------------------------------------- /pyshop.sample.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop.sample.service -------------------------------------------------------------------------------- /pyshop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/__init__.py -------------------------------------------------------------------------------- /pyshop/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyshop/bin/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/bin/install.py -------------------------------------------------------------------------------- /pyshop/bin/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/bin/migrate.py -------------------------------------------------------------------------------- /pyshop/bin/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyshop/bin/migration/migr_0_7_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/bin/migration/migr_0_7_5.py -------------------------------------------------------------------------------- /pyshop/bin/migration/migr_1_2_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/bin/migration/migr_1_2_3.py -------------------------------------------------------------------------------- /pyshop/bin/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/bin/shell.py -------------------------------------------------------------------------------- /pyshop/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/compat.py -------------------------------------------------------------------------------- /pyshop/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/config.py -------------------------------------------------------------------------------- /pyshop/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyshop/helpers/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/helpers/authentication.py -------------------------------------------------------------------------------- /pyshop/helpers/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/helpers/download.py -------------------------------------------------------------------------------- /pyshop/helpers/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/helpers/i18n.py -------------------------------------------------------------------------------- /pyshop/helpers/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/helpers/pypi.py -------------------------------------------------------------------------------- /pyshop/helpers/restxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/helpers/restxt.py -------------------------------------------------------------------------------- /pyshop/helpers/sqla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/helpers/sqla.py -------------------------------------------------------------------------------- /pyshop/locale/fr/LC_MESSAGES/pyshop.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/locale/fr/LC_MESSAGES/pyshop.po -------------------------------------------------------------------------------- /pyshop/locale/pyshop.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/locale/pyshop.pot -------------------------------------------------------------------------------- /pyshop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/models.py -------------------------------------------------------------------------------- /pyshop/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/security.py -------------------------------------------------------------------------------- /pyshop/static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /pyshop/static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /pyshop/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /pyshop/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /pyshop/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /pyshop/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /pyshop/static/classifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/classifications.json -------------------------------------------------------------------------------- /pyshop/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/favicon.ico -------------------------------------------------------------------------------- /pyshop/static/js/bootstrap3-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/js/bootstrap3-typeahead.js -------------------------------------------------------------------------------- /pyshop/static/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /pyshop/static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/pygments.css -------------------------------------------------------------------------------- /pyshop/static/pyramid-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/pyramid-small.png -------------------------------------------------------------------------------- /pyshop/static/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/pyramid.png -------------------------------------------------------------------------------- /pyshop/static/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/static/signin.css -------------------------------------------------------------------------------- /pyshop/templates/pyshop/account/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/account/create.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/account/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/account/delete.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/account/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/account/edit.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/account/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/account/list.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/form_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/form_layout.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/layout.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/nav.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/package/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/package/list.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/package/purge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/package/purge.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/package/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/package/show.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/simple/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/simple/create.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/simple/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/simple/list.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/simple/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/simple/show.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/user/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/user/change_password.html -------------------------------------------------------------------------------- /pyshop/templates/pyshop/user/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/pyshop/user/edit.html -------------------------------------------------------------------------------- /pyshop/templates/shared/base_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/shared/base_layout.html -------------------------------------------------------------------------------- /pyshop/templates/shared/footer_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/shared/footer_buttons.html -------------------------------------------------------------------------------- /pyshop/templates/shared/form_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/shared/form_delete.html -------------------------------------------------------------------------------- /pyshop/templates/shared/form_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/shared/form_layout.html -------------------------------------------------------------------------------- /pyshop/templates/shared/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/shared/layout.html -------------------------------------------------------------------------------- /pyshop/templates/shared/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/shared/login.html -------------------------------------------------------------------------------- /pyshop/templates/shared/paging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/templates/shared/paging.html -------------------------------------------------------------------------------- /pyshop/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/__init__.py -------------------------------------------------------------------------------- /pyshop/tests/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/case.py -------------------------------------------------------------------------------- /pyshop/tests/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/conf.py -------------------------------------------------------------------------------- /pyshop/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/test_models.py -------------------------------------------------------------------------------- /pyshop/tests/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/test_security.py -------------------------------------------------------------------------------- /pyshop/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyshop/tests/views/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/views/test_account.py -------------------------------------------------------------------------------- /pyshop/tests/views/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/views/test_package.py -------------------------------------------------------------------------------- /pyshop/tests/views/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/views/test_simple.py -------------------------------------------------------------------------------- /pyshop/tests/views/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/tests/views/test_user.py -------------------------------------------------------------------------------- /pyshop/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/__init__.py -------------------------------------------------------------------------------- /pyshop/views/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/account.py -------------------------------------------------------------------------------- /pyshop/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/base.py -------------------------------------------------------------------------------- /pyshop/views/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/credentials.py -------------------------------------------------------------------------------- /pyshop/views/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/package.py -------------------------------------------------------------------------------- /pyshop/views/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/repository.py -------------------------------------------------------------------------------- /pyshop/views/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/simple.py -------------------------------------------------------------------------------- /pyshop/views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/user.py -------------------------------------------------------------------------------- /pyshop/views/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/pyshop/views/xmlrpc.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardiros/pyshop/HEAD/tox.ini --------------------------------------------------------------------------------