make_post_sell/requirements.py3.txt
Russell Ballestrini ba6d2591b1 sunset miscutils!
new file:   make_post_sell/lib/hex_color.py
	modified:   make_post_sell/lib/mail.py
	modified:   make_post_sell/lib/render.py
	new file:   make_post_sell/lib/sanitize_html.py
	modified:   make_post_sell/models/cart.py
	modified:   make_post_sell/models/coupon.py
	modified:   make_post_sell/models/shop.py
	modified:   make_post_sell/models/user.py
	modified:   requirements.py3.txt
	modified:   requirements.txt
2022-07-05 14:50:20 -04:00

53 lines
925 B
Text

# python 2 -> 3 compat.
six
# Pyramid with SQLAlchemy.
plaster_pastedeploy
pyramid
pyramid_jinja2
pyramid_debugtoolbar
waitress
pyramid_retry
# Model.
pyramid_tm
SQLAlchemy
SQLAlchemy-Utils
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, lot's of extras in here like async.
# https://git.launchpad.net/dkimpy/tree/setup.py#n84
dkimpy
# needed for signing with ed25519 keys.
dkimpy[ed25519]
# MarkDown is a popular and familair WYSIWYM markup language.
# python 3.
markdown
# human readable timestamps.
ago
# miniuri: The Universal URI Parser
miniuri
# Bleach sanitizes MarkDown (removes HTML/Javascript) to prevent XSS.
bleach>=2.1.4
bleach-allowlist
beautifulsoup4
html5lib