modified: make_post_sell/models/product.py modified: make_post_sell/models/shop.py modified: make_post_sell/models/user.py new file: make_post_sell/scripts/alembic/versions/c263b4fba9e7_new_ux_columns.py deleted: make_post_sell/static/css/alerts.css modified: make_post_sell/static/css/common.css deleted: make_post_sell/static/css/lib.css deleted: make_post_sell/static/css/mps.css modified: make_post_sell/templates/base.j2 modified: make_post_sell/templates/cart.j2 modified: make_post_sell/templates/product_edit.j2 modified: make_post_sell/templates/shop_settings.j2 modified: make_post_sell/templates/snippets/search.j2 modified: make_post_sell/templates/user_settings.j2 modified: make_post_sell/views/shop.py modified: requirements.txt
60 lines
1.2 KiB
Text
60 lines
1.2 KiB
Text
# python 2 -> 3 compat.
|
|
six
|
|
#future
|
|
|
|
# Pyramid with SQLAlchemy.
|
|
plaster_pastedeploy
|
|
pyramid
|
|
pyramid_jinja2
|
|
pyramid_debugtoolbar
|
|
waitress
|
|
pyramid_retry
|
|
|
|
# Model.
|
|
pyramid_tm
|
|
SQLAlchemy==1.3.24
|
|
# pinning because they broke Python 2.7 in version 0.36.7 ...
|
|
SQLAlchemy-Utils<=0.36.6
|
|
transaction
|
|
zope.sqlalchemy
|
|
alembic
|
|
|
|
# boto3 is needed for AWS s3 or Digital Ocean Spaces.
|
|
boto3
|
|
|
|
# Create URI slugs from titles.
|
|
python-slugify
|
|
|
|
# Future proof, computationally complex password hashes.
|
|
bcrypt
|
|
|
|
# credit card storage and processing.
|
|
stripe
|
|
|
|
# DKIM Signed Email from Python.
|
|
dkimpy
|
|
|
|
# MarkDown is a popular and familair WYSIWYM markup language.
|
|
# python 3.
|
|
#markdown
|
|
# python 2.
|
|
markdown==2.6.11
|
|
|
|
# my miscutils checked out via git as an editable package.
|
|
#-e git+git@github.com:russellballestrini/miscutils.git#egg=miscutils
|
|
git+https://github.com/russellballestrini/miscutils.git#egg=miscutils
|
|
|
|
# human readable timestamps.
|
|
ago
|
|
|
|
# miniuri is a tiny URI parser.
|
|
miniuri
|
|
|
|
# my miscutils package can sanitize and make HTML safe.
|
|
# that said, it requires the following:
|
|
# Bleach sanitizes MarkDown (removes HTML/Javascript) to prevent XSS.
|
|
bleach
|
|
#bleach-whitelist
|
|
bleach-allowlist
|
|
beautifulsoup4
|
|
html5lib
|