2019-12-22 19:57:16 +08:00
|
|
|
[tool.black]
|
2022-02-06 22:25:53 +08:00
|
|
|
target-version = ['py37']
|
2019-12-22 19:57:16 +08:00
|
|
|
exclude = '''
|
|
|
|
(
|
|
|
|
/(
|
|
|
|
\.eggs # exclude a few common directories in the
|
|
|
|
| \.git # root of the project
|
|
|
|
| \.hg
|
|
|
|
| \.mypy_cache
|
|
|
|
| \.tox
|
|
|
|
| \.venv
|
|
|
|
| _build
|
|
|
|
| buck-out
|
|
|
|
| build
|
|
|
|
| dist
|
|
|
|
| migrations # migrations/ is generated by alembic
|
|
|
|
)/
|
|
|
|
)
|
|
|
|
'''
|
2020-10-01 18:13:28 +08:00
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
name = "SimpleLogin"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "open-source email alias solution"
|
|
|
|
authors = ["SimpleLogin <dev@simplelogin.io>"]
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/simple-login/app"
|
|
|
|
keywords = ["email", "alias", "privacy", "oauth2", "openid"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.7"
|
|
|
|
flask = "^1.1.2"
|
|
|
|
flask_sqlalchemy = "^2.4.4"
|
|
|
|
flask_login = "^0.5.0"
|
|
|
|
wtforms = "^2.3.3"
|
|
|
|
unidecode = "^1.1.1"
|
|
|
|
gunicorn = "^20.0.4"
|
|
|
|
bcrypt = "^3.2.0"
|
|
|
|
python-dotenv = "^0.14.0"
|
2022-02-03 18:30:44 +08:00
|
|
|
ipython = "^7.31.1"
|
2020-10-01 18:13:28 +08:00
|
|
|
sqlalchemy_utils = "^0.36.8"
|
|
|
|
psycopg2-binary = "^2.8.6"
|
2021-11-17 17:50:02 +08:00
|
|
|
sentry_sdk = "^1.4.3"
|
2020-10-01 18:13:28 +08:00
|
|
|
blinker = "^1.4"
|
|
|
|
arrow = "^0.16.0"
|
|
|
|
Flask-WTF = "^0.14.3"
|
|
|
|
boto3 = "^1.15.9"
|
|
|
|
Flask-Migrate = "^2.5.3"
|
|
|
|
flask_admin = "^1.5.6"
|
|
|
|
flask-cors = "^3.0.9"
|
|
|
|
watchtower = "^0.8.0"
|
|
|
|
sqlalchemy-utils = "^0.36.8"
|
|
|
|
jwcrypto = "^0.8"
|
|
|
|
yacron = "^0.11.1"
|
|
|
|
flask-debugtoolbar = "^0.11.0"
|
|
|
|
requests_oauthlib = "^1.3.0"
|
|
|
|
pyopenssl = "^19.1.0"
|
|
|
|
aiosmtpd = "^1.2"
|
|
|
|
dnspython = "^2.0.0"
|
|
|
|
coloredlogs = "^14.0"
|
|
|
|
pycryptodome = "^3.9.8"
|
|
|
|
phpserialize = "^1.3"
|
|
|
|
dkimpy = "^1.0.5"
|
|
|
|
pyotp = "^2.4.0"
|
|
|
|
flask_profiler = "^1.8.1"
|
|
|
|
facebook-sdk = "^3.1.0"
|
|
|
|
google-api-python-client = "^1.12.3"
|
|
|
|
google-auth-httplib2 = "^0.0.4"
|
|
|
|
python-gnupg = "^0.4.6"
|
|
|
|
webauthn = "^0.4.7"
|
|
|
|
pyspf = "^2.0.14"
|
|
|
|
Flask-Limiter = "^1.4"
|
|
|
|
memory_profiler = "^0.57.0"
|
|
|
|
gevent = "^20.9.0"
|
|
|
|
aiospamc = "^0.6.1"
|
2020-10-01 18:21:37 +08:00
|
|
|
email_validator = "^1.1.1"
|
2020-10-28 18:50:14 +08:00
|
|
|
PGPy = "^0.5.3"
|
2020-12-14 02:12:02 +08:00
|
|
|
coinbase-commerce = "^1.0.1"
|
2021-05-14 04:44:16 +08:00
|
|
|
requests = "^2.25.1"
|
2021-07-23 21:53:39 +08:00
|
|
|
newrelic = "^6.4.4"
|
2021-09-10 22:36:59 +08:00
|
|
|
flanker = "^0.9.11"
|
2021-09-21 16:54:35 +08:00
|
|
|
pyre2 = "^0.3.6"
|
2021-10-18 17:45:08 +08:00
|
|
|
tldextract = "^3.1.2"
|
2021-11-20 01:31:42 +08:00
|
|
|
flask-debugtoolbar-sqlalchemy = "^0.2.0"
|
2021-12-03 00:03:13 +08:00
|
|
|
twilio = "^7.3.2"
|
2022-02-03 18:09:17 +08:00
|
|
|
Deprecated = "^1.2.13"
|
2020-10-01 18:13:28 +08:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-02-07 00:36:25 +08:00
|
|
|
pytest = "^7.0.0"
|
|
|
|
pytest-cov = "^3.0.0"
|
2022-02-06 22:25:53 +08:00
|
|
|
pre-commit = "^2.17.0"
|
2022-02-07 00:36:25 +08:00
|
|
|
black = "^22.1.0"
|
2022-02-06 22:25:53 +08:00
|
|
|
flake8 = "^4.0.1"
|
2022-02-07 04:37:43 +08:00
|
|
|
flake8-bugbear = "^22.1.11"
|
2020-10-01 18:13:28 +08:00
|
|
|
|
2020-12-14 02:12:02 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|