2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "astor"
version = "0.8.1"
description = "Read/rewrite/write Python ASTs"
category = "dev"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
[ [ package ] ]
name = "atomicwrites"
version = "1.4.0"
description = "Atomic file writes."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "attrs"
2021-05-11 18:09:20 +02:00
version = "21.2.0"
2020-12-29 13:59:16 +01:00
description = "Classes Without Boilerplate"
category = "dev"
optional = false
2021-05-11 18:09:20 +02:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2020-12-29 13:59:16 +01:00
[ package . extras ]
2021-05-11 18:09:20 +02:00
dev = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "mypy" , "pytest-mypy-plugins" , "zope.interface" , "furo" , "sphinx" , "sphinx-notfound-page" , "pre-commit" ]
docs = [ "furo" , "sphinx" , "zope.interface" , "sphinx-notfound-page" ]
tests = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "mypy" , "pytest-mypy-plugins" , "zope.interface" ]
tests_no_zope = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "mypy" , "pytest-mypy-plugins" ]
2020-12-29 13:59:16 +01:00
2021-08-16 17:06:27 +02:00
[ [ package ] ]
name = "backports.entry-points-selectable"
version = "1.1.0"
description = "Compatibility shim providing selectable entry points for older implementations"
category = "dev"
optional = false
python-versions = ">=2.7"
[ package . dependencies ]
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
[ package . extras ]
docs = [ "sphinx" , "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" ]
testing = [ "pytest (>=4.6)" , "pytest-flake8" , "pytest-cov" , "pytest-black (>=0.3.7)" , "pytest-mypy" , "pytest-checkdocs (>=2.4)" , "pytest-enabler (>=1.0.1)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "black"
2021-09-15 20:39:29 +02:00
version = "21.9b0"
2020-12-29 13:59:16 +01:00
description = "The uncompromising code formatter."
category = "dev"
optional = false
2021-04-28 19:42:51 +02:00
python-versions = ">=3.6.2"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
click = ">=7.1.2"
mypy-extensions = ">=0.4.3"
2021-09-15 20:39:29 +02:00
pathspec = ">=0.9.0,<1"
platformdirs = ">=2"
2020-12-29 13:59:16 +01:00
regex = ">=2020.1.8"
2021-08-16 17:06:27 +02:00
tomli = ">=0.2.6,<2.0.0"
2021-04-28 19:42:51 +02:00
typed-ast = { version = ">=1.4.2" , markers = "python_version < \"3.8\"" }
2021-09-15 20:39:29 +02:00
typing-extensions = [
{ version = ">=3.10.0.0" , markers = "python_version < \"3.10\"" } ,
{ version = "!=3.10.0.1" , markers = "python_version >= \"3.10\"" } ,
]
2020-12-29 13:59:16 +01:00
[ package . extras ]
colorama = [ "colorama (>=0.4.3)" ]
2021-08-16 17:06:27 +02:00
d = [ "aiohttp (>=3.6.0)" , "aiohttp-cors (>=0.4.0)" ]
2021-09-15 20:39:29 +02:00
jupyter = [ "ipython (>=7.8.0)" , "tokenize-rt (>=3.2.0)" ]
2021-04-28 19:42:51 +02:00
python2 = [ "typed-ast (>=1.4.2)" ]
2021-08-16 17:06:27 +02:00
uvloop = [ "uvloop (>=0.15.2)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "bleach"
2021-09-15 20:39:29 +02:00
version = "4.1.0"
2020-12-29 13:59:16 +01:00
description = "An easy safelist-based HTML-sanitizing tool."
category = "main"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
packaging = "*"
six = ">=1.9.0"
webencodings = "*"
[ [ package ] ]
2021-08-16 17:06:27 +02:00
name = "bx-django-utils"
2021-09-15 20:39:29 +02:00
version = "5"
2021-08-16 17:06:27 +02:00
description = "Various Django utility functions"
2020-12-29 13:59:16 +01:00
category = "main"
optional = false
python-versions = ">=3.6,<4.0.0"
[ package . dependencies ]
2021-08-16 17:06:27 +02:00
bx_py_utils = ">=41"
2020-12-29 13:59:16 +01:00
django = "*"
python-stdnum = "*"
2021-08-16 17:06:27 +02:00
[ [ package ] ]
name = "bx-py-utils"
2021-09-15 20:39:29 +02:00
version = "44"
2021-08-16 17:06:27 +02:00
description = "Various Python utility functions"
category = "main"
optional = false
python-versions = ">=3.6,<4.0.0"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "certifi"
2021-08-16 17:06:27 +02:00
version = "2021.5.30"
2020-12-29 13:59:16 +01:00
description = "Python package for providing Mozilla's CA Bundle."
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
2021-08-16 17:06:27 +02:00
name = "charset-normalizer"
2021-09-15 20:39:29 +02:00
version = "2.0.5"
2021-08-16 17:06:27 +02:00
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
2020-12-29 13:59:16 +01:00
category = "main"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=3.5.0"
[ package . extras ]
unicode_backport = [ "unicodedata2" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "click"
2021-08-16 17:06:27 +02:00
version = "8.0.1"
2020-12-29 13:59:16 +01:00
description = "Composable command line interface toolkit"
category = "dev"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=3.6"
[ package . dependencies ]
colorama = { version = "*" , markers = "platform_system == \"Windows\"" }
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "colorama"
version = "0.4.4"
description = "Cross-platform colored terminal text."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ [ package ] ]
name = "colorlog"
2021-09-15 20:39:29 +02:00
version = "6.4.1"
2021-04-28 19:42:51 +02:00
description = "Add colours to the output of Python's logging module."
2020-12-29 13:59:16 +01:00
category = "main"
optional = false
2021-09-15 20:39:29 +02:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
colorama = { version = "*" , markers = "sys_platform == \"win32\"" }
2021-09-15 20:39:29 +02:00
[ package . extras ]
development = [ "black" , "flake8" , "mypy" , "pytest" , "types-colorama" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "coverage"
2021-04-28 19:42:51 +02:00
version = "5.5"
2020-12-29 13:59:16 +01:00
description = "Code coverage measurement for Python"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
[ package . extras ]
toml = [ "toml" ]
[ [ package ] ]
name = "coveralls"
2021-08-16 17:06:27 +02:00
version = "3.2.0"
2020-12-29 13:59:16 +01:00
description = "Show coverage stats online via coveralls.io"
category = "dev"
optional = false
python-versions = ">= 3.5"
[ package . dependencies ]
coverage = ">=4.1,<6.0"
docopt = ">=0.6.1"
requests = ">=1.0.0"
[ package . extras ]
yaml = [ "PyYAML (>=3.10)" ]
[ [ package ] ]
name = "defusedxml"
2021-04-28 19:42:51 +02:00
version = "0.7.1"
2020-12-29 13:59:16 +01:00
description = "XML bomb protection for Python stdlib modules"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ [ package ] ]
name = "diff-match-patch"
version = "20200713"
description = "Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text."
category = "main"
optional = false
python-versions = ">=2.7"
[ [ package ] ]
name = "distlib"
2021-08-16 17:06:27 +02:00
version = "0.3.2"
2020-12-29 13:59:16 +01:00
description = "Distribution utilities"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "django"
2021-08-16 17:06:27 +02:00
version = "2.2.24"
2020-12-29 13:59:16 +01:00
description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design."
category = "main"
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
pytz = "*"
sqlparse = ">=0.2.2"
[ package . extras ]
argon2 = [ "argon2-cffi (>=16.1.0)" ]
bcrypt = [ "bcrypt" ]
[ [ package ] ]
name = "django-admin-sortable2"
2021-04-28 19:42:51 +02:00
version = "1.0"
2020-12-29 13:59:16 +01:00
description = "Generic drag-and-drop sorting for the List, the Stacked- and the Tabular-Inlines Views in the Django Admin"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
2021-04-28 19:42:51 +02:00
Django = ">=1.8,<3.3"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "django-axes"
2021-09-15 20:39:29 +02:00
version = "5.24.0"
2020-12-29 13:59:16 +01:00
description = "Keep track of failed login attempts in Django-powered sites."
category = "main"
optional = false
python-versions = "~=3.6"
[ package . dependencies ]
2021-01-08 11:12:15 +01:00
django = ">=2.2"
2021-09-15 20:39:29 +02:00
django-ipware = ">=3,<5"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "django-ckeditor"
2021-08-16 17:06:27 +02:00
version = "6.1.0"
2020-12-29 13:59:16 +01:00
description = "Django admin CKEditor integration."
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
django-js-asset = ">=1.2.2"
[ [ package ] ]
name = "django-dbbackup"
version = "3.3.0"
description = "Management commands to help backup and restore a project database and media"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
Django = ">=1.5"
pytz = "*"
six = "*"
[ [ package ] ]
name = "django-debug-toolbar"
2021-08-16 17:06:27 +02:00
version = "3.2.2"
2020-12-29 13:59:16 +01:00
description = "A configurable set of panels that display various debug information about the current request/response."
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
Django = ">=2.2"
sqlparse = ">=0.2.0"
[ [ package ] ]
name = "django-import-export"
2021-01-08 11:12:15 +01:00
version = "2.5.0"
2020-12-29 13:59:16 +01:00
description = "Django application and library for importing and exporting data with included admin integration."
category = "main"
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
diff-match-patch = "*"
Django = ">=2.0"
tablib = { version = ">=0.14.0" , extras = [ "html" , "ods" , "xls" , "xlsx" , "yaml" ] }
[ [ package ] ]
name = "django-ipware"
2021-09-15 20:39:29 +02:00
version = "4.0.0"
2021-08-16 17:06:27 +02:00
description = "A Django application to retrieve user's IP address"
2020-12-29 13:59:16 +01:00
category = "main"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "django-js-asset"
version = "1.2.2"
description = "script tag with additional attributes for django.forms.Media"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "django-processinfo"
version = "1.0.2"
description = "Django application to collect information about the running server processes."
category = "main"
optional = false
python-versions = ">=3.7,<4.0.0"
[ package . dependencies ]
Django = "*"
[ [ package ] ]
name = "django-redis"
2021-08-16 17:06:27 +02:00
version = "5.0.0"
2020-12-29 13:59:16 +01:00
description = "Full featured redis cache backend for Django."
category = "main"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
Django = ">=2.2"
redis = ">=3.0.0"
[ [ package ] ]
name = "django-reversion"
2021-08-16 17:06:27 +02:00
version = "4.0.0"
2020-12-29 13:59:16 +01:00
description = "An extension to the Django web framework that provides version control for model instances."
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
2021-08-16 17:06:27 +02:00
django = ">=2.0"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "django-reversion-compare"
2021-08-16 17:06:27 +02:00
version = "0.14.1"
2020-12-29 13:59:16 +01:00
description = "history compare for django-reversion"
category = "main"
optional = false
python-versions = ">=3.7,<4.0.0"
[ package . dependencies ]
diff-match-patch = "*"
django-reversion = "*"
[ [ package ] ]
name = "django-tagulous"
2021-09-15 20:39:29 +02:00
version = "1.3.0"
2020-12-29 13:59:16 +01:00
description = "Fabulous Tagging for Django"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
Django = ">=2.2"
[ package . extras ]
2021-09-15 20:39:29 +02:00
dev = [ "tox" , "jasmine" , "djangorestframework (>=3.0,<4.0)" ]
2020-12-29 13:59:16 +01:00
devdb = [ "psycopg2" , "mysqlclient" ]
[ [ package ] ]
name = "django-tools"
version = "0.48.3"
description = "miscellaneous tools for django"
category = "main"
optional = false
python-versions = ">=3.6,<4.0.0"
[ package . dependencies ]
bleach = "*"
django = "*"
icdiff = "*"
pprintpp = "*"
[ [ package ] ]
2021-08-16 17:06:27 +02:00
name = "django-yunohost-integration"
2021-09-15 20:39:29 +02:00
version = "0.2.0"
2020-12-29 13:59:16 +01:00
description = "Glue code to package django projects as yunohost apps."
category = "main"
optional = false
python-versions = ">=3.7,<4.0.0"
[ package . dependencies ]
django = "*"
2021-01-19 19:22:42 +01:00
django-axes = { version = "*" , optional = true , markers = "extra == \"ynh\"" }
django-redis = { version = "*" , optional = true , markers = "extra == \"ynh\"" }
gunicorn = { version = "*" , optional = true , markers = "extra == \"ynh\"" }
2021-08-17 09:03:26 +02:00
psycopg2 = { version = "*" , optional = true , markers = "extra == \"ynh\"" }
2021-01-19 19:22:42 +01:00
[ package . extras ]
2021-08-17 09:03:26 +02:00
ynh = [ "django-axes" , "django-redis" , "gunicorn" , "psycopg2" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "docopt"
version = "0.6.2"
description = "Pythonic argument parser, that will make you smile"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "et-xmlfile"
2021-04-28 19:42:51 +02:00
version = "1.1.0"
2020-12-29 13:59:16 +01:00
description = "An implementation of lxml.xmlfile for the standard library"
category = "main"
optional = false
2021-04-28 19:42:51 +02:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "filelock"
version = "3.0.12"
description = "A platform independent file lock."
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "flake8"
2021-05-11 18:09:20 +02:00
version = "3.9.2"
2020-12-29 13:59:16 +01:00
description = "the modular source code checker: pep8 pyflakes and co"
category = "dev"
optional = false
2021-04-28 19:42:51 +02:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
mccabe = ">=0.6.0,<0.7.0"
2021-04-28 19:42:51 +02:00
pycodestyle = ">=2.7.0,<2.8.0"
pyflakes = ">=2.3.0,<2.4.0"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "flynt"
2021-09-15 20:39:29 +02:00
version = "0.69"
2020-12-29 13:59:16 +01:00
description = "CLI tool to convert a python project's %-formatted strings to f-strings."
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
astor = "*"
[ [ package ] ]
name = "gunicorn"
2021-04-28 19:42:51 +02:00
version = "20.1.0"
2020-12-29 13:59:16 +01:00
description = "WSGI HTTP Server for UNIX"
category = "main"
optional = false
2021-04-28 19:42:51 +02:00
python-versions = ">=3.5"
2020-12-29 13:59:16 +01:00
[ package . extras ]
2021-04-28 19:42:51 +02:00
eventlet = [ "eventlet (>=0.24.1)" ]
gevent = [ "gevent (>=1.4.0)" ]
2020-12-29 13:59:16 +01:00
setproctitle = [ "setproctitle" ]
tornado = [ "tornado (>=0.2)" ]
[ [ package ] ]
name = "icdiff"
2021-08-16 17:06:27 +02:00
version = "2.0.4"
2020-12-29 13:59:16 +01:00
description = "improved colored diff"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "idna"
2021-08-16 17:06:27 +02:00
version = "3.2"
2020-12-29 13:59:16 +01:00
description = "Internationalized Domain Names in Applications (IDNA)"
category = "main"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=3.5"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "importlib-metadata"
2021-09-15 20:39:29 +02:00
version = "4.8.1"
2020-12-29 13:59:16 +01:00
description = "Read metadata from Python packages"
category = "dev"
optional = false
2021-01-19 19:22:42 +01:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
2021-01-19 19:22:42 +01:00
typing-extensions = { version = ">=3.6.4" , markers = "python_version < \"3.8\"" }
2020-12-29 13:59:16 +01:00
zipp = ">=0.5"
[ package . extras ]
2021-01-19 19:22:42 +01:00
docs = [ "sphinx" , "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" ]
2021-08-16 17:06:27 +02:00
perf = [ "ipython" ]
testing = [ "pytest (>=4.6)" , "pytest-checkdocs (>=2.4)" , "pytest-flake8" , "pytest-cov" , "pytest-enabler (>=1.0.1)" , "packaging" , "pep517" , "pyfakefs" , "flufl.flake8" , "pytest-perf (>=0.9.2)" , "pytest-black (>=0.3.7)" , "pytest-mypy" , "importlib-resources (>=1.3)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "iniconfig"
version = "1.1.1"
description = "iniconfig: brain-dead simple config-ini parsing"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "isort"
2021-08-16 17:06:27 +02:00
version = "5.9.3"
2020-12-29 13:59:16 +01:00
description = "A Python utility / library to sort Python imports."
category = "dev"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=3.6.1,<4.0"
2020-12-29 13:59:16 +01:00
[ package . extras ]
pipfile_deprecated_finder = [ "pipreqs" , "requirementslib" ]
requirements_deprecated_finder = [ "pipreqs" , "pip-api" ]
colors = [ "colorama (>=0.4.3,<0.5.0)" ]
2021-08-16 17:06:27 +02:00
plugins = [ "setuptools" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "markuppy"
version = "1.14"
description = "An HTML/XML generator"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "mccabe"
version = "0.6.1"
description = "McCabe checker, plugin for flake8"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "mypy-extensions"
version = "0.4.3"
description = "Experimental type system extensions for programs checked with the mypy typechecker."
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "odfpy"
version = "1.4.1"
description = "Python API and tools to manipulate OpenDocument files"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
defusedxml = "*"
[ [ package ] ]
name = "openpyxl"
2021-09-15 20:39:29 +02:00
version = "3.0.8"
2020-12-29 13:59:16 +01:00
description = "A Python library to read/write Excel 2010 xlsx/xlsm files"
category = "main"
optional = false
2021-09-15 20:39:29 +02:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
et-xmlfile = "*"
[ [ package ] ]
name = "packaging"
2021-08-16 17:06:27 +02:00
version = "21.0"
2020-12-29 13:59:16 +01:00
description = "Core utilities for Python packages"
category = "main"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
pyparsing = ">=2.0.2"
[ [ package ] ]
name = "pathspec"
2021-08-16 17:06:27 +02:00
version = "0.9.0"
2020-12-29 13:59:16 +01:00
description = "Utility library for gitignore style pattern matching of file paths."
category = "dev"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "pillow"
2021-09-15 20:39:29 +02:00
version = "8.3.2"
2020-12-29 13:59:16 +01:00
description = "Python Imaging Library (Fork)"
category = "main"
optional = false
python-versions = ">=3.6"
2021-08-16 17:06:27 +02:00
[ [ package ] ]
name = "platformdirs"
2021-09-15 20:39:29 +02:00
version = "2.3.0"
2021-08-16 17:06:27 +02:00
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . extras ]
docs = [ "Sphinx (>=4)" , "furo (>=2021.7.5b38)" , "proselint (>=0.10.2)" , "sphinx-autodoc-typehints (>=1.12)" ]
test = [ "appdirs (==1.4.4)" , "pytest (>=6)" , "pytest-cov (>=2.7)" , "pytest-mock (>=3.6)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "pluggy"
2021-09-15 20:39:29 +02:00
version = "1.0.0"
2020-12-29 13:59:16 +01:00
description = "plugin and hook calling mechanisms for python"
category = "dev"
optional = false
2021-09-15 20:39:29 +02:00
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
[ package . extras ]
dev = [ "pre-commit" , "tox" ]
2021-09-15 20:39:29 +02:00
testing = [ "pytest" , "pytest-benchmark" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "pprintpp"
version = "0.4.0"
description = "A drop-in replacement for pprint that's actually pretty"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
2021-08-17 09:03:26 +02:00
name = "psycopg2"
2021-09-15 21:45:37 +02:00
version = "2.8.6"
description = "psycopg2 - Python-PostgreSQL Database Adapter"
category = "main"
optional = false
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "py"
version = "1.10.0"
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "pycodestyle"
2021-04-28 19:42:51 +02:00
version = "2.7.0"
2020-12-29 13:59:16 +01:00
description = "Python style guide checker"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "pyflakes"
2021-04-28 19:42:51 +02:00
version = "2.3.1"
2020-12-29 13:59:16 +01:00
description = "passive checker of Python programs"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "pyinventory"
2021-09-15 21:33:30 +02:00
version = "0.9.4"
2020-12-29 13:59:16 +01:00
description = "Web based management to catalog things including state and location etc. using Python/Django."
category = "main"
optional = false
python-versions = ">=3.7,<4.0.0"
[ package . dependencies ]
2021-08-16 17:06:27 +02:00
bx_django_utils = "*"
2020-12-29 13:59:16 +01:00
bx_py_utils = "*"
colorlog = "*"
django = ">=2.2.0,<2.3.0"
django-admin-sortable2 = "*"
django-axes = "*"
django-ckeditor = "*"
django-dbbackup = "*"
django-debug-toolbar = "*"
django-import-export = "*"
django-processinfo = "*"
django-reversion-compare = "*"
django-tagulous = "*"
django-tools = ">=0.48.2"
gunicorn = "*"
pillow = "*"
2021-09-16 09:47:20 +02:00
psycopg2 = { version = "<2.9" , optional = true , markers = "extra == \"psycopg2-source\"" }
2020-12-29 13:59:16 +01:00
requests = "*"
[ package . extras ]
docker = [ "docker-compose" ]
2021-09-15 21:33:30 +02:00
psycopg2-source = [ "psycopg2 (<2.9)" ]
postgres-binary = [ "psycopg2-binary (<2.9)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "pyparsing"
version = "2.4.7"
description = "Python parsing module"
category = "main"
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
[ [ package ] ]
name = "pytest"
2021-09-15 20:39:29 +02:00
version = "6.2.5"
2020-12-29 13:59:16 +01:00
description = "pytest: simple powerful testing with Python"
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
atomicwrites = { version = ">=1.0" , markers = "sys_platform == \"win32\"" }
attrs = ">=19.2.0"
colorama = { version = "*" , markers = "sys_platform == \"win32\"" }
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
iniconfig = "*"
packaging = "*"
2021-09-15 20:39:29 +02:00
pluggy = ">=0.12,<2.0"
2020-12-29 13:59:16 +01:00
py = ">=1.8.2"
toml = "*"
[ package . extras ]
testing = [ "argcomplete" , "hypothesis (>=3.56)" , "mock" , "nose" , "requests" , "xmlschema" ]
[ [ package ] ]
name = "pytest-cov"
2021-08-16 17:06:27 +02:00
version = "2.12.1"
2020-12-29 13:59:16 +01:00
description = "Pytest plugin for measuring coverage."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
2021-01-19 19:22:42 +01:00
coverage = ">=5.2.1"
2020-12-29 13:59:16 +01:00
pytest = ">=4.6"
2021-08-16 17:06:27 +02:00
toml = "*"
2020-12-29 13:59:16 +01:00
[ package . extras ]
2021-08-16 17:06:27 +02:00
testing = [ "fields" , "hunter" , "process-tests" , "six" , "pytest-xdist" , "virtualenv" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "pytest-django"
2021-08-16 17:06:27 +02:00
version = "4.4.0"
2020-12-29 13:59:16 +01:00
description = "A Django plugin for pytest."
category = "dev"
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
pytest = ">=5.4.0"
[ package . extras ]
docs = [ "sphinx" , "sphinx-rtd-theme" ]
testing = [ "django" , "django-configurations (>=2.0)" ]
[ [ package ] ]
name = "python-stdnum"
2021-04-28 19:42:51 +02:00
version = "1.16"
2020-12-29 13:59:16 +01:00
description = "Python module to handle standardized numbers and codes"
category = "main"
optional = false
python-versions = "*"
[ package . extras ]
soap = [ "zeep" ]
soap-alt = [ "suds" ]
soap-fallback = [ "pysimplesoap" ]
[ [ package ] ]
name = "pytz"
2021-04-28 19:42:51 +02:00
version = "2021.1"
2020-12-29 13:59:16 +01:00
description = "World timezone definitions, modern and historical"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "pyupgrade"
2021-09-15 20:39:29 +02:00
version = "2.26.0"
2020-12-29 13:59:16 +01:00
description = "A tool to automatically upgrade syntax for newer versions."
category = "dev"
optional = false
python-versions = ">=3.6.1"
[ package . dependencies ]
tokenize-rt = ">=3.2.0"
[ [ package ] ]
name = "pyyaml"
2021-04-28 19:42:51 +02:00
version = "5.4.1"
2020-12-29 13:59:16 +01:00
description = "YAML parser and emitter for Python"
category = "main"
optional = false
2021-04-28 19:42:51 +02:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "redis"
version = "3.5.3"
description = "Python client for Redis key-value store"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . extras ]
hiredis = [ "hiredis (>=0.1.3)" ]
[ [ package ] ]
name = "regex"
2021-09-15 20:39:29 +02:00
version = "2021.8.28"
2020-12-29 13:59:16 +01:00
description = "Alternative regular expression module, to replace re."
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "requests"
2021-08-16 17:06:27 +02:00
version = "2.26.0"
2020-12-29 13:59:16 +01:00
description = "Python HTTP for Humans."
category = "main"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
certifi = ">=2017.4.17"
2021-08-16 17:06:27 +02:00
charset-normalizer = { version = ">=2.0.0,<2.1.0" , markers = "python_version >= \"3\"" }
idna = { version = ">=2.5,<4" , markers = "python_version >= \"3\"" }
2020-12-29 13:59:16 +01:00
urllib3 = ">=1.21.1,<1.27"
[ package . extras ]
socks = [ "PySocks (>=1.5.6,!=1.5.7)" , "win-inet-pton" ]
2021-08-16 17:06:27 +02:00
use_chardet_on_py3 = [ "chardet (>=3.0.2,<5)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "six"
2021-05-11 18:09:20 +02:00
version = "1.16.0"
2020-12-29 13:59:16 +01:00
description = "Python 2 and 3 compatibility utilities"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
[ [ package ] ]
name = "sqlparse"
2021-09-15 20:39:29 +02:00
version = "0.4.2"
2020-12-29 13:59:16 +01:00
description = "A non-validating SQL parser."
category = "main"
optional = false
python-versions = ">=3.5"
[ [ package ] ]
name = "tablib"
version = "3.0.0"
description = "Format agnostic tabular data library (XLS, JSON, YAML, CSV)"
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
markuppy = { version = "*" , optional = true , markers = "extra == \"html\"" }
odfpy = { version = "*" , optional = true , markers = "extra == \"ods\"" }
openpyxl = { version = ">=2.6.0" , optional = true , markers = "extra == \"xlsx\"" }
pyyaml = { version = "*" , optional = true , markers = "extra == \"yaml\"" }
xlrd = { version = "*" , optional = true , markers = "extra == \"xls\"" }
xlwt = { version = "*" , optional = true , markers = "extra == \"xls\"" }
[ package . extras ]
all = [ "markuppy" , "odfpy" , "openpyxl (>=2.6.0)" , "pandas" , "pyyaml" , "tabulate" , "xlrd" , "xlwt" ]
cli = [ "tabulate" ]
html = [ "markuppy" ]
ods = [ "odfpy" ]
pandas = [ "pandas" ]
xls = [ "xlrd" , "xlwt" ]
xlsx = [ "openpyxl (>=2.6.0)" ]
yaml = [ "pyyaml" ]
[ [ package ] ]
name = "tokenize-rt"
2021-04-28 19:42:51 +02:00
version = "4.1.0"
2020-12-29 13:59:16 +01:00
description = "A wrapper around the stdlib `tokenize` which roundtrips."
category = "dev"
optional = false
python-versions = ">=3.6.1"
[ [ package ] ]
name = "toml"
version = "0.10.2"
description = "Python Library for Tom's Obvious, Minimal Language"
category = "dev"
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
2021-08-16 17:06:27 +02:00
[ [ package ] ]
name = "tomli"
version = "1.2.1"
description = "A lil' TOML parser"
category = "dev"
optional = false
python-versions = ">=3.6"
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "tox"
2021-09-15 20:39:29 +02:00
version = "3.24.3"
2020-12-29 13:59:16 +01:00
description = "tox is a generic virtualenv management and test command line tool"
category = "dev"
optional = false
2020-12-29 14:36:09 +01:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
2020-12-29 14:36:09 +01:00
colorama = { version = ">=0.4.1" , markers = "platform_system == \"Windows\"" }
filelock = ">=3.0.0"
2021-01-19 19:22:42 +01:00
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
2020-12-29 14:36:09 +01:00
packaging = ">=14"
pluggy = ">=0.12.0"
py = ">=1.4.17"
six = ">=1.14.0"
2020-12-29 13:59:16 +01:00
toml = ">=0.9.4"
2020-12-29 14:36:09 +01:00
virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7"
2020-12-29 13:59:16 +01:00
[ package . extras ]
2020-12-29 14:36:09 +01:00
docs = [ "pygments-github-lexers (>=0.0.5)" , "sphinx (>=2.0.0)" , "sphinxcontrib-autoprogram (>=0.1.5)" , "towncrier (>=18.5.0)" ]
2021-01-19 19:22:42 +01:00
testing = [ "flaky (>=3.4.0)" , "freezegun (>=0.3.11)" , "psutil (>=5.6.1)" , "pytest (>=4.0.0)" , "pytest-cov (>=2.5.1)" , "pytest-mock (>=1.10.0)" , "pytest-randomly (>=1.0.0)" , "pytest-xdist (>=1.22.2)" , "pathlib2 (>=2.3.3)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "typed-ast"
2021-04-28 19:42:51 +02:00
version = "1.4.3"
2020-12-29 13:59:16 +01:00
description = "a fork of Python 2 and 3 ast modules with type comment support"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "typing-extensions"
2021-09-15 20:39:29 +02:00
version = "3.10.0.2"
2020-12-29 13:59:16 +01:00
description = "Backported and Experimental Type Hints for Python 3.5+"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "urllib3"
2021-08-16 17:06:27 +02:00
version = "1.26.6"
2020-12-29 13:59:16 +01:00
description = "HTTP library with thread-safe connection pooling, file post, and more."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
[ package . extras ]
2021-08-16 17:06:27 +02:00
brotli = [ "brotlipy (>=0.6.0)" ]
2020-12-29 13:59:16 +01:00
secure = [ "pyOpenSSL (>=0.14)" , "cryptography (>=1.3.4)" , "idna (>=2.0.0)" , "certifi" , "ipaddress" ]
socks = [ "PySocks (>=1.5.6,!=1.5.7,<2.0)" ]
[ [ package ] ]
name = "virtualenv"
2021-08-16 17:06:27 +02:00
version = "20.7.2"
2020-12-29 13:59:16 +01:00
description = "Virtual Python Environment builder"
category = "dev"
optional = false
2021-08-16 17:06:27 +02:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-12-29 13:59:16 +01:00
[ package . dependencies ]
2021-08-16 17:06:27 +02:00
"backports.entry-points-selectable" = ">=1.0.4"
2020-12-29 13:59:16 +01:00
distlib = ">=0.3.1,<1"
filelock = ">=3.0.0,<4"
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
2021-08-16 17:06:27 +02:00
platformdirs = ">=2,<3"
2020-12-29 13:59:16 +01:00
six = ">=1.9.0,<2"
[ package . extras ]
docs = [ "proselint (>=0.10.2)" , "sphinx (>=3)" , "sphinx-argparse (>=0.2.5)" , "sphinx-rtd-theme (>=0.4.3)" , "towncrier (>=19.9.0rc1)" ]
2021-08-16 17:06:27 +02:00
testing = [ "coverage (>=4)" , "coverage-enable-subprocess (>=1)" , "flaky (>=3)" , "pytest (>=4)" , "pytest-env (>=0.6.2)" , "pytest-freezegun (>=0.4.1)" , "pytest-mock (>=2)" , "pytest-randomly (>=1)" , "pytest-timeout (>=1)" , "packaging (>=20.0)" ]
2020-12-29 13:59:16 +01:00
[ [ package ] ]
name = "webencodings"
version = "0.5.1"
description = "Character encoding aliases for legacy web content"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "xlrd"
version = "2.0.1"
description = "Library for developers to extract data from Microsoft Excel (tm) .xls spreadsheet files"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
[ package . extras ]
build = [ "wheel" , "twine" ]
docs = [ "sphinx" ]
test = [ "pytest" , "pytest-cov" ]
[ [ package ] ]
name = "xlwt"
version = "1.3.0"
description = "Library to create spreadsheet files compatible with MS Excel 97/2000/XP/2003 XLS files, on any platform, with Python 2.6, 2.7, 3.3+"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "zipp"
2021-08-16 17:06:27 +02:00
version = "3.5.0"
2020-12-29 13:59:16 +01:00
description = "Backport of pathlib-compatible object wrapper for zip files"
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . extras ]
2021-04-28 19:42:51 +02:00
docs = [ "sphinx" , "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" ]
2021-08-16 17:06:27 +02:00
testing = [ "pytest (>=4.6)" , "pytest-checkdocs (>=2.4)" , "pytest-flake8" , "pytest-cov" , "pytest-enabler (>=1.0.1)" , "jaraco.itertools" , "func-timeout" , "pytest-black (>=0.3.7)" , "pytest-mypy" ]
2020-12-29 13:59:16 +01:00
[ metadata ]
lock-version = "1.1"
python-versions = ">=3.7,<4.0.0"
2021-09-16 09:47:20 +02:00
content-hash = "ad76de090736f4d82ad3077ac8dfcb3a09f748ece0bb01a9781b0694a3add162"
2020-12-29 13:59:16 +01:00
[ metadata . files ]
astor = [
{ file = "astor-0.8.1-py2.py3-none-any.whl" , hash = "sha256:070a54e890cefb5b3739d19f30f5a5ec840ffc9c50ffa7d23cc9fc1a38ebbfc5" } ,
{ file = "astor-0.8.1.tar.gz" , hash = "sha256:6a6effda93f4e1ce9f618779b2dd1d9d84f1e32812c23a29b3fff6fd7f63fa5e" } ,
]
atomicwrites = [
{ file = "atomicwrites-1.4.0-py2.py3-none-any.whl" , hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197" } ,
{ file = "atomicwrites-1.4.0.tar.gz" , hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a" } ,
]
attrs = [
2021-05-11 18:09:20 +02:00
{ file = "attrs-21.2.0-py2.py3-none-any.whl" , hash = "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1" } ,
{ file = "attrs-21.2.0.tar.gz" , hash = "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb" } ,
2020-12-29 13:59:16 +01:00
]
2021-08-16 17:06:27 +02:00
"backports.entry-points-selectable" = [
{ file = "backports.entry_points_selectable-1.1.0-py2.py3-none-any.whl" , hash = "sha256:a6d9a871cde5e15b4c4a53e3d43ba890cc6861ec1332c9c2428c92f977192acc" } ,
{ file = "backports.entry_points_selectable-1.1.0.tar.gz" , hash = "sha256:988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a" } ,
]
2020-12-29 13:59:16 +01:00
black = [
2021-09-15 20:39:29 +02:00
{ file = "black-21.9b0-py3-none-any.whl" , hash = "sha256:380f1b5da05e5a1429225676655dddb96f5ae8c75bdf91e53d798871b902a115" } ,
{ file = "black-21.9b0.tar.gz" , hash = "sha256:7de4cfc7eb6b710de325712d40125689101d21d25283eed7e9998722cf10eb91" } ,
2020-12-29 13:59:16 +01:00
]
bleach = [
2021-09-15 20:39:29 +02:00
{ file = "bleach-4.1.0-py2.py3-none-any.whl" , hash = "sha256:4d2651ab93271d1129ac9cbc679f524565cc8a1b791909c4a51eac4446a15994" } ,
{ file = "bleach-4.1.0.tar.gz" , hash = "sha256:0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da" } ,
2021-08-16 17:06:27 +02:00
]
bx-django-utils = [
2021-09-15 20:39:29 +02:00
{ file = "bx_django_utils-5-py3-none-any.whl" , hash = "sha256:5297ef03dd03539237c67d3faea8490acdba643629637afbab9603e2ceefa04c" } ,
{ file = "bx_django_utils-5.tar.gz" , hash = "sha256:30800d46b3836c99215f609323b1cd41f26727cb1037fe47bbf55fcb36789998" } ,
2020-12-29 13:59:16 +01:00
]
bx-py-utils = [
2021-09-15 20:39:29 +02:00
{ file = "bx_py_utils-44-py3-none-any.whl" , hash = "sha256:d253c0daf32682201a03e4f80a90028ebdfbad7a93b102a7befcf003a1624a4d" } ,
{ file = "bx_py_utils-44.tar.gz" , hash = "sha256:693daa83e5037db527b0e7254de4bacc6c05f1c0153714eacfa7d366d58709e8" } ,
2020-12-29 13:59:16 +01:00
]
certifi = [
2021-08-16 17:06:27 +02:00
{ file = "certifi-2021.5.30-py2.py3-none-any.whl" , hash = "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8" } ,
{ file = "certifi-2021.5.30.tar.gz" , hash = "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee" } ,
2020-12-29 13:59:16 +01:00
]
2021-08-16 17:06:27 +02:00
charset-normalizer = [
2021-09-15 20:39:29 +02:00
{ file = "charset-normalizer-2.0.5.tar.gz" , hash = "sha256:7098e7e862f6370a2a8d1a6398cd359815c45d12626267652c3f13dec58e2367" } ,
{ file = "charset_normalizer-2.0.5-py3-none-any.whl" , hash = "sha256:fa471a601dfea0f492e4f4fca035cd82155e65dc45c9b83bf4322dfab63755dd" } ,
2020-12-29 13:59:16 +01:00
]
click = [
2021-08-16 17:06:27 +02:00
{ file = "click-8.0.1-py3-none-any.whl" , hash = "sha256:fba402a4a47334742d782209a7c79bc448911afe1149d07bdabdf480b3e2f4b6" } ,
{ file = "click-8.0.1.tar.gz" , hash = "sha256:8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a" } ,
2020-12-29 13:59:16 +01:00
]
colorama = [
{ file = "colorama-0.4.4-py2.py3-none-any.whl" , hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2" } ,
{ file = "colorama-0.4.4.tar.gz" , hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b" } ,
]
colorlog = [
2021-09-15 20:39:29 +02:00
{ file = "colorlog-6.4.1-py2.py3-none-any.whl" , hash = "sha256:b13da382156711f7973bf7cbd1f40ea544aff51fde5dc3fb8f3fa602c321d645" } ,
{ file = "colorlog-6.4.1.tar.gz" , hash = "sha256:af99440154a01f27c09256760ea3477982bf782721feaa345904e806879df4d8" } ,
2020-12-29 13:59:16 +01:00
]
coverage = [
2021-04-28 19:42:51 +02:00
{ file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:b7895207b4c843c76a25ab8c1e866261bcfe27bfaa20c192de5190121770672b" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:c2723d347ab06e7ddad1a58b2a821218239249a9e4365eaff6649d31180c1669" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux2010_i686.whl" , hash = "sha256:900fbf7759501bc7807fd6638c947d7a831fc9fdf742dc10f02956ff7220fa90" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux2010_x86_64.whl" , hash = "sha256:004d1880bed2d97151facef49f08e255a20ceb6f9432df75f4eef018fdd5a78c" } ,
{ file = "coverage-5.5-cp27-cp27m-win32.whl" , hash = "sha256:06191eb60f8d8a5bc046f3799f8a07a2d7aefb9504b0209aff0b47298333302a" } ,
{ file = "coverage-5.5-cp27-cp27m-win_amd64.whl" , hash = "sha256:7501140f755b725495941b43347ba8a2777407fc7f250d4f5a7d2a1050ba8e82" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:372da284cfd642d8e08ef606917846fa2ee350f64994bebfbd3afb0040436905" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:8963a499849a1fc54b35b1c9f162f4108017b2e6db2c46c1bed93a72262ed083" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux2010_i686.whl" , hash = "sha256:869a64f53488f40fa5b5b9dcb9e9b2962a66a87dab37790f3fcfb5144b996ef5" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux2010_x86_64.whl" , hash = "sha256:4a7697d8cb0f27399b0e393c0b90f0f1e40c82023ea4d45d22bce7032a5d7b81" } ,
{ file = "coverage-5.5-cp310-cp310-macosx_10_14_x86_64.whl" , hash = "sha256:8d0a0725ad7c1a0bcd8d1b437e191107d457e2ec1084b9f190630a4fb1af78e6" } ,
{ file = "coverage-5.5-cp310-cp310-manylinux1_x86_64.whl" , hash = "sha256:51cb9476a3987c8967ebab3f0fe144819781fca264f57f89760037a2ea191cb0" } ,
{ file = "coverage-5.5-cp310-cp310-win_amd64.whl" , hash = "sha256:c0891a6a97b09c1f3e073a890514d5012eb256845c451bd48f7968ef939bf4ae" } ,
{ file = "coverage-5.5-cp35-cp35m-macosx_10_9_x86_64.whl" , hash = "sha256:3487286bc29a5aa4b93a072e9592f22254291ce96a9fbc5251f566b6b7343cdb" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:deee1077aae10d8fa88cb02c845cfba9b62c55e1183f52f6ae6a2df6a2187160" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux2010_i686.whl" , hash = "sha256:6c90e11318f0d3c436a42409f2749ee1a115cd8b067d7f14c148f1ce5574d701" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux2010_x86_64.whl" , hash = "sha256:30c77c1dc9f253283e34c27935fded5015f7d1abe83bc7821680ac444eaf7793" } ,
{ file = "coverage-5.5-cp35-cp35m-win32.whl" , hash = "sha256:9a1ef3b66e38ef8618ce5fdc7bea3d9f45f3624e2a66295eea5e57966c85909e" } ,
{ file = "coverage-5.5-cp35-cp35m-win_amd64.whl" , hash = "sha256:972c85d205b51e30e59525694670de6a8a89691186012535f9d7dbaa230e42c3" } ,
{ file = "coverage-5.5-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:af0e781009aaf59e25c5a678122391cb0f345ac0ec272c7961dc5455e1c40066" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:74d881fc777ebb11c63736622b60cb9e4aee5cace591ce274fb69e582a12a61a" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:92b017ce34b68a7d67bd6d117e6d443a9bf63a2ecf8567bb3d8c6c7bc5014465" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux2010_i686.whl" , hash = "sha256:d636598c8305e1f90b439dbf4f66437de4a5e3c31fdf47ad29542478c8508bbb" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux2010_x86_64.whl" , hash = "sha256:41179b8a845742d1eb60449bdb2992196e211341818565abded11cfa90efb821" } ,
{ file = "coverage-5.5-cp36-cp36m-win32.whl" , hash = "sha256:040af6c32813fa3eae5305d53f18875bedd079960822ef8ec067a66dd8afcd45" } ,
{ file = "coverage-5.5-cp36-cp36m-win_amd64.whl" , hash = "sha256:5fec2d43a2cc6965edc0bb9e83e1e4b557f76f843a77a2496cbe719583ce8184" } ,
{ file = "coverage-5.5-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:18ba8bbede96a2c3dde7b868de9dcbd55670690af0988713f0603f037848418a" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:2910f4d36a6a9b4214bb7038d537f015346f413a975d57ca6b43bf23d6563b53" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux2010_i686.whl" , hash = "sha256:796c9c3c79747146ebd278dbe1e5c5c05dd6b10cc3bcb8389dfdf844f3ead638" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux2010_x86_64.whl" , hash = "sha256:53194af30d5bad77fcba80e23a1441c71abfb3e01192034f8246e0d8f99528f3" } ,
{ file = "coverage-5.5-cp37-cp37m-win32.whl" , hash = "sha256:184a47bbe0aa6400ed2d41d8e9ed868b8205046518c52464fde713ea06e3a74a" } ,
{ file = "coverage-5.5-cp37-cp37m-win_amd64.whl" , hash = "sha256:2949cad1c5208b8298d5686d5a85b66aae46d73eec2c3e08c817dd3513e5848a" } ,
{ file = "coverage-5.5-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:217658ec7187497e3f3ebd901afdca1af062b42cfe3e0dafea4cced3983739f6" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:1aa846f56c3d49205c952d8318e76ccc2ae23303351d9270ab220004c580cfe2" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:24d4a7de75446be83244eabbff746d66b9240ae020ced65d060815fac3423759" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux2010_i686.whl" , hash = "sha256:d1f8bf7b90ba55699b3a5e44930e93ff0189aa27186e96071fac7dd0d06a1873" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux2010_x86_64.whl" , hash = "sha256:970284a88b99673ccb2e4e334cfb38a10aab7cd44f7457564d11898a74b62d0a" } ,
{ file = "coverage-5.5-cp38-cp38-win32.whl" , hash = "sha256:01d84219b5cdbfc8122223b39a954820929497a1cb1422824bb86b07b74594b6" } ,
{ file = "coverage-5.5-cp38-cp38-win_amd64.whl" , hash = "sha256:2e0d881ad471768bf6e6c2bf905d183543f10098e3b3640fc029509530091502" } ,
{ file = "coverage-5.5-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:d1f9ce122f83b2305592c11d64f181b87153fc2c2bbd3bb4a3dde8303cfb1a6b" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:13c4ee887eca0f4c5a247b75398d4114c37882658300e153113dafb1d76de529" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:52596d3d0e8bdf3af43db3e9ba8dcdaac724ba7b5ca3f6358529d56f7a166f8b" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux2010_i686.whl" , hash = "sha256:2cafbbb3af0733db200c9b5f798d18953b1a304d3f86a938367de1567f4b5bff" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux2010_x86_64.whl" , hash = "sha256:44d654437b8ddd9eee7d1eaee28b7219bec228520ff809af170488fd2fed3e2b" } ,
{ file = "coverage-5.5-cp39-cp39-win32.whl" , hash = "sha256:d314ed732c25d29775e84a960c3c60808b682c08d86602ec2c3008e1202e3bb6" } ,
{ file = "coverage-5.5-cp39-cp39-win_amd64.whl" , hash = "sha256:13034c4409db851670bc9acd836243aeee299949bd5673e11844befcb0149f03" } ,
{ file = "coverage-5.5-pp36-none-any.whl" , hash = "sha256:f030f8873312a16414c0d8e1a1ddff2d3235655a2174e3648b4fa66b3f2f1079" } ,
{ file = "coverage-5.5-pp37-none-any.whl" , hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4" } ,
{ file = "coverage-5.5.tar.gz" , hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c" } ,
2020-12-29 13:59:16 +01:00
]
coveralls = [
2021-08-16 17:06:27 +02:00
{ file = "coveralls-3.2.0-py2.py3-none-any.whl" , hash = "sha256:aedfcc5296b788ebaf8ace8029376e5f102f67c53d1373f2e821515c15b36527" } ,
{ file = "coveralls-3.2.0.tar.gz" , hash = "sha256:15a987d9df877fff44cd81948c5806ffb6eafb757b3443f737888358e96156ee" } ,
2020-12-29 13:59:16 +01:00
]
defusedxml = [
2021-04-28 19:42:51 +02:00
{ file = "defusedxml-0.7.1-py2.py3-none-any.whl" , hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61" } ,
{ file = "defusedxml-0.7.1.tar.gz" , hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69" } ,
2020-12-29 13:59:16 +01:00
]
diff-match-patch = [
{ file = "diff-match-patch-20200713.tar.gz" , hash = "sha256:da6f5a01aa586df23dfc89f3827e1cafbb5420be9d87769eeb079ddfd9477a18" } ,
{ file = "diff_match_patch-20200713-py3-none-any.whl" , hash = "sha256:8bf9d9c4e059d917b5c6312bac0c137971a32815ddbda9c682b949f2986b4d34" } ,
]
distlib = [
2021-08-16 17:06:27 +02:00
{ file = "distlib-0.3.2-py2.py3-none-any.whl" , hash = "sha256:23e223426b28491b1ced97dc3bbe183027419dfc7982b4fa2f05d5f3ff10711c" } ,
{ file = "distlib-0.3.2.zip" , hash = "sha256:106fef6dc37dd8c0e2c0a60d3fca3e77460a48907f335fa28420463a6f799736" } ,
2020-12-29 13:59:16 +01:00
]
django = [
2021-08-16 17:06:27 +02:00
{ file = "Django-2.2.24-py3-none-any.whl" , hash = "sha256:f2084ceecff86b1e631c2cd4107d435daf4e12f1efcdf11061a73bf0b5e95f92" } ,
{ file = "Django-2.2.24.tar.gz" , hash = "sha256:3339ff0e03dee13045aef6ae7b523edff75b6d726adf7a7a48f53d5a501f7db7" } ,
2020-12-29 13:59:16 +01:00
]
django-admin-sortable2 = [
2021-04-28 19:42:51 +02:00
{ file = "django-admin-sortable2-1.0.tar.gz" , hash = "sha256:e62624f5c8ea66d8564205abf2e4a46d862ee62f87103571004623b51d0e4ced" } ,
{ file = "django_admin_sortable2-1.0-py3-none-any.whl" , hash = "sha256:0a90bc3210d215fdb0696705c0f2705f8417d6f07d47cc24de71ee57061508e9" } ,
2020-12-29 13:59:16 +01:00
]
django-axes = [
2021-09-15 20:39:29 +02:00
{ file = "django-axes-5.24.0.tar.gz" , hash = "sha256:dadee869826b6f5061d1e77369770f27008aaac7e9d6cf4eb1b0f8f7dd802691" } ,
{ file = "django_axes-5.24.0-py3-none-any.whl" , hash = "sha256:4d7b8bef6c1094aaa94abef12a7085b4fd63b933a4010d1c82f9f120b50c19d1" } ,
2020-12-29 13:59:16 +01:00
]
django-ckeditor = [
2021-08-16 17:06:27 +02:00
{ file = "django-ckeditor-6.1.0.tar.gz" , hash = "sha256:f0d108f67a81a04e26d8de11255fe314f51026eaf8eb0534a807512ae3c21620" } ,
{ file = "django_ckeditor-6.1.0-py2.py3-none-any.whl" , hash = "sha256:346b26b9d60dc8a88524d0eaaf406f4e91a4b3c22d208ae87aa032bf500b251c" } ,
2020-12-29 13:59:16 +01:00
]
django-dbbackup = [
{ file = "django-dbbackup-3.3.0.tar.gz" , hash = "sha256:bb109735cae98b64ad084e5b461b7aca2d7b39992f10c9ed9435e3ebb6fb76c8" } ,
]
django-debug-toolbar = [
2021-08-16 17:06:27 +02:00
{ file = "django-debug-toolbar-3.2.2.tar.gz" , hash = "sha256:8c5b13795d4040008ee69ba82dcdd259c49db346cf7d0de6e561a49d191f0860" } ,
{ file = "django_debug_toolbar-3.2.2-py3-none-any.whl" , hash = "sha256:d7bab7573fab35b0fd029163371b7182f5826c13da69734beb675c761d06a4d3" } ,
2020-12-29 13:59:16 +01:00
]
django-import-export = [
2021-01-08 11:12:15 +01:00
{ file = "django-import-export-2.5.0.tar.gz" , hash = "sha256:c39c003bfc803fb63ba7742562f1667603a4a8d7426261845d75ce8582d40f48" } ,
{ file = "django_import_export-2.5.0-py3-none-any.whl" , hash = "sha256:cf6f3dabdd4f32dcb26e25c7ddcba7aee3168b55d380b0da79f0349afa17c011" } ,
2020-12-29 13:59:16 +01:00
]
django-ipware = [
2021-09-15 20:39:29 +02:00
{ file = "django-ipware-4.0.0.tar.gz" , hash = "sha256:1294f916f3b3475e40e1b0ec1bd320aa2397978eae672721c81cbc2ed517e9ee" } ,
{ file = "django_ipware-4.0.0-py2.py3-none-any.whl" , hash = "sha256:116bd0d7940f09bf7ffd465943992e23d87e772a9d6c0d3a57b74040589a383b" } ,
2020-12-29 13:59:16 +01:00
]
django-js-asset = [
{ file = "django-js-asset-1.2.2.tar.gz" , hash = "sha256:c163ae80d2e0b22d8fb598047cd0dcef31f81830e127cfecae278ad574167260" } ,
{ file = "django_js_asset-1.2.2-py2.py3-none-any.whl" , hash = "sha256:8ec12017f26eec524cab436c64ae73033368a372970af4cf42d9354fcb166bdd" } ,
]
django-processinfo = [
{ file = "django-processinfo-1.0.2.tar.gz" , hash = "sha256:3cacad233a5428a5cc6292eafbfddd97948d8d1e4f47e47175a7fcdfcee90f12" } ,
{ file = "django_processinfo-1.0.2-py3-none-any.whl" , hash = "sha256:08aefdf7285d1eaa595e46570bcc12f2dfd9e24594d524246110614819076b6c" } ,
]
django-redis = [
2021-08-16 17:06:27 +02:00
{ file = "django-redis-5.0.0.tar.gz" , hash = "sha256:048f665bbe27f8ff2edebae6aa9c534ab137f1e8fa7234147ef470df3f3aa9b8" } ,
{ file = "django_redis-5.0.0-py3-none-any.whl" , hash = "sha256:97739ca9de3f964c51412d1d7d8aecdfd86737bb197fce6e1ff12620c63c97ee" } ,
2020-12-29 13:59:16 +01:00
]
django-reversion = [
2021-08-16 17:06:27 +02:00
{ file = "django-reversion-4.0.0.tar.gz" , hash = "sha256:ad6d714b4b9b824e22b88d47201cc0f74b5c4294c8d4e1f8d7ac7c3631ef3188" } ,
{ file = "django_reversion-4.0.0-py3-none-any.whl" , hash = "sha256:f059c654e38c0dd8dccd7f0990aa2f6d9ad22dab55c5e095f9596aeda8079dcd" } ,
2020-12-29 13:59:16 +01:00
]
django-reversion-compare = [
2021-08-16 17:06:27 +02:00
{ file = "django-reversion-compare-0.14.1.tar.gz" , hash = "sha256:bb879555f5e7a69b76399634535d1f3d0e6fc68202f22740bf8df4a6b25b092b" } ,
{ file = "django_reversion_compare-0.14.1-py3-none-any.whl" , hash = "sha256:8b9b8cf5dc290be7d1fa36b1bd79378c8a4723ea0227a0c683f5d30db105350c" } ,
2020-12-29 13:59:16 +01:00
]
django-tagulous = [
2021-09-15 20:39:29 +02:00
{ file = "django-tagulous-1.3.0.tar.gz" , hash = "sha256:8e7967f196358a0c7985f65ec5672afab350e9224062a769a74ff456a01d94cd" } ,
{ file = "django_tagulous-1.3.0-py3-none-any.whl" , hash = "sha256:2da8fd03d466fea6769e44df774c69d214b95eec2b6e9b7c6073309bc8781c72" } ,
2020-12-29 13:59:16 +01:00
]
django-tools = [
{ file = "django-tools-0.48.3.tar.gz" , hash = "sha256:08ed2ae606067f49c2c3949055227a826c8b880e5816114925eca386cf1823af" } ,
{ file = "django_tools-0.48.3-py3-none-any.whl" , hash = "sha256:40444fa16b703b7c6960a800ba76aad42472c9aa70040d549a4d91dbb47a5ddb" } ,
]
2021-08-16 17:06:27 +02:00
django-yunohost-integration = [
2021-09-15 20:39:29 +02:00
{ file = "django_yunohost_integration-0.2.0-py3-none-any.whl" , hash = "sha256:0ff205a2a32ef95ed0ae6f523aa1130e8005ad9b7807c76b18e4ef64d86f8b79" } ,
{ file = "django_yunohost_integration-0.2.0.tar.gz" , hash = "sha256:4f6583da67a54067a6940786fc5d14e1efa9c347bf102dfb68f4bdb9f75a8e4e" } ,
2020-12-29 13:59:16 +01:00
]
docopt = [
{ file = "docopt-0.6.2.tar.gz" , hash = "sha256:49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491" } ,
]
et-xmlfile = [
2021-04-28 19:42:51 +02:00
{ file = "et_xmlfile-1.1.0-py3-none-any.whl" , hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada" } ,
{ file = "et_xmlfile-1.1.0.tar.gz" , hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c" } ,
2020-12-29 13:59:16 +01:00
]
filelock = [
{ file = "filelock-3.0.12-py3-none-any.whl" , hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836" } ,
{ file = "filelock-3.0.12.tar.gz" , hash = "sha256:18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59" } ,
]
flake8 = [
2021-05-11 18:09:20 +02:00
{ file = "flake8-3.9.2-py2.py3-none-any.whl" , hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907" } ,
{ file = "flake8-3.9.2.tar.gz" , hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b" } ,
2020-12-29 13:59:16 +01:00
]
flynt = [
2021-09-15 20:39:29 +02:00
{ file = "flynt-0.69-py3-none-any.whl" , hash = "sha256:5bc49abd71891afbc2400f22f040ba9f23259fe03f9049dd62a2de8953248ce7" } ,
{ file = "flynt-0.69.tar.gz" , hash = "sha256:42de12dd29e66cc067cda8a2c1fb34fb79c0b14b0c48cd7cdcbc7c5a84578adf" } ,
2020-12-29 13:59:16 +01:00
]
gunicorn = [
2021-04-28 19:42:51 +02:00
{ file = "gunicorn-20.1.0.tar.gz" , hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8" } ,
2020-12-29 13:59:16 +01:00
]
icdiff = [
2021-08-16 17:06:27 +02:00
{ file = "icdiff-2.0.4.tar.gz" , hash = "sha256:c72572e5ce087bc7a7748af2664764d4a805897caeefb665bdc12677fefb2212" } ,
2020-12-29 13:59:16 +01:00
]
idna = [
2021-08-16 17:06:27 +02:00
{ file = "idna-3.2-py3-none-any.whl" , hash = "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a" } ,
{ file = "idna-3.2.tar.gz" , hash = "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3" } ,
2020-12-29 13:59:16 +01:00
]
importlib-metadata = [
2021-09-15 20:39:29 +02:00
{ file = "importlib_metadata-4.8.1-py3-none-any.whl" , hash = "sha256:b618b6d2d5ffa2f16add5697cf57a46c76a56229b0ed1c438322e4e95645bd15" } ,
{ file = "importlib_metadata-4.8.1.tar.gz" , hash = "sha256:f284b3e11256ad1e5d03ab86bb2ccd6f5339688ff17a4d797a0fe7df326f23b1" } ,
2020-12-29 13:59:16 +01:00
]
iniconfig = [
{ file = "iniconfig-1.1.1-py2.py3-none-any.whl" , hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3" } ,
{ file = "iniconfig-1.1.1.tar.gz" , hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32" } ,
]
isort = [
2021-08-16 17:06:27 +02:00
{ file = "isort-5.9.3-py3-none-any.whl" , hash = "sha256:e17d6e2b81095c9db0a03a8025a957f334d6ea30b26f9ec70805411e5c7c81f2" } ,
{ file = "isort-5.9.3.tar.gz" , hash = "sha256:9c2ea1e62d871267b78307fe511c0838ba0da28698c5732d54e2790bf3ba9899" } ,
2020-12-29 13:59:16 +01:00
]
markuppy = [
{ file = "MarkupPy-1.14.tar.gz" , hash = "sha256:1adee2c0a542af378fe84548ff6f6b0168f3cb7f426b46961038a2bcfaad0d5f" } ,
]
mccabe = [
{ file = "mccabe-0.6.1-py2.py3-none-any.whl" , hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42" } ,
{ file = "mccabe-0.6.1.tar.gz" , hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f" } ,
]
mypy-extensions = [
{ file = "mypy_extensions-0.4.3-py2.py3-none-any.whl" , hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d" } ,
{ file = "mypy_extensions-0.4.3.tar.gz" , hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8" } ,
]
odfpy = [
{ file = "odfpy-1.4.1-py2.7.egg" , hash = "sha256:fc3b8d1bc098eba4a0fda865a76d9d1e577c4ceec771426bcb169a82c5e9dfe0" } ,
{ file = "odfpy-1.4.1.tar.gz" , hash = "sha256:db766a6e59c5103212f3cc92ec8dd50a0f3a02790233ed0b52148b70d3c438ec" } ,
]
openpyxl = [
2021-09-15 20:39:29 +02:00
{ file = "openpyxl-3.0.8-py2.py3-none-any.whl" , hash = "sha256:52150a09b660fe444af7abe2592b156c14e324526b1968a57705525547317a7f" } ,
{ file = "openpyxl-3.0.8.tar.gz" , hash = "sha256:4f2770348c029ce9433316ced8f91ed37d2a605e654f8bfdc93a3524561a8ce2" } ,
2020-12-29 13:59:16 +01:00
]
packaging = [
2021-08-16 17:06:27 +02:00
{ file = "packaging-21.0-py3-none-any.whl" , hash = "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14" } ,
{ file = "packaging-21.0.tar.gz" , hash = "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7" } ,
2020-12-29 13:59:16 +01:00
]
pathspec = [
2021-08-16 17:06:27 +02:00
{ file = "pathspec-0.9.0-py2.py3-none-any.whl" , hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a" } ,
{ file = "pathspec-0.9.0.tar.gz" , hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1" } ,
2020-12-29 13:59:16 +01:00
]
pillow = [
2021-09-15 20:39:29 +02:00
{ file = "Pillow-8.3.2-cp310-cp310-macosx_10_10_universal2.whl" , hash = "sha256:c691b26283c3a31594683217d746f1dad59a7ae1d4cfc24626d7a064a11197d4" } ,
{ file = "Pillow-8.3.2-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:f514c2717012859ccb349c97862568fdc0479aad85b0270d6b5a6509dbc142e2" } ,
{ file = "Pillow-8.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:be25cb93442c6d2f8702c599b51184bd3ccd83adebd08886b682173e09ef0c3f" } ,
{ file = "Pillow-8.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:d675a876b295afa114ca8bf42d7f86b5fb1298e1b6bb9a24405a3f6c8338811c" } ,
{ file = "Pillow-8.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:59697568a0455764a094585b2551fd76bfd6b959c9f92d4bdec9d0e14616303a" } ,
{ file = "Pillow-8.3.2-cp310-cp310-win32.whl" , hash = "sha256:2d5e9dc0bf1b5d9048a94c48d0813b6c96fccfa4ccf276d9c36308840f40c228" } ,
{ file = "Pillow-8.3.2-cp310-cp310-win_amd64.whl" , hash = "sha256:11c27e74bab423eb3c9232d97553111cc0be81b74b47165f07ebfdd29d825875" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-macosx_10_10_x86_64.whl" , hash = "sha256:11eb7f98165d56042545c9e6db3ce394ed8b45089a67124298f0473b29cb60b2" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:2f23b2d3079522fdf3c09de6517f625f7a964f916c956527bed805ac043799b8" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:19ec4cfe4b961edc249b0e04b5618666c23a83bc35842dea2bfd5dfa0157f81b" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:e5a31c07cea5edbaeb4bdba6f2b87db7d3dc0f446f379d907e51cc70ea375629" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:15ccb81a6ffc57ea0137f9f3ac2737ffa1d11f786244d719639df17476d399a7" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:8f284dc1695caf71a74f24993b7c7473d77bc760be45f776a2c2f4e04c170550" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-win32.whl" , hash = "sha256:4abc247b31a98f29e5224f2d31ef15f86a71f79c7f4d2ac345a5d551d6393073" } ,
{ file = "Pillow-8.3.2-cp36-cp36m-win_amd64.whl" , hash = "sha256:a048dad5ed6ad1fad338c02c609b862dfaa921fcd065d747194a6805f91f2196" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-macosx_10_10_x86_64.whl" , hash = "sha256:06d1adaa284696785375fa80a6a8eb309be722cf4ef8949518beb34487a3df71" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:bd24054aaf21e70a51e2a2a5ed1183560d3a69e6f9594a4bfe360a46f94eba83" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:27a330bf7014ee034046db43ccbb05c766aa9e70b8d6c5260bfc38d73103b0ba" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:13654b521fb98abdecec105ea3fb5ba863d1548c9b58831dd5105bb3873569f1" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:a1bd983c565f92779be456ece2479840ec39d386007cd4ae83382646293d681b" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:4326ea1e2722f3dc00ed77c36d3b5354b8fb7399fb59230249ea6d59cbed90da" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-win32.whl" , hash = "sha256:085a90a99404b859a4b6c3daa42afde17cb3ad3115e44a75f0d7b4a32f06a6c9" } ,
{ file = "Pillow-8.3.2-cp37-cp37m-win_amd64.whl" , hash = "sha256:18a07a683805d32826c09acfce44a90bf474e6a66ce482b1c7fcd3757d588df3" } ,
{ file = "Pillow-8.3.2-cp38-cp38-macosx_10_10_x86_64.whl" , hash = "sha256:4e59e99fd680e2b8b11bbd463f3c9450ab799305d5f2bafb74fefba6ac058616" } ,
{ file = "Pillow-8.3.2-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:4d89a2e9219a526401015153c0e9dd48319ea6ab9fe3b066a20aa9aee23d9fd3" } ,
{ file = "Pillow-8.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:56fd98c8294f57636084f4b076b75f86c57b2a63a8410c0cd172bc93695ee979" } ,
{ file = "Pillow-8.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:2b11c9d310a3522b0fd3c35667914271f570576a0e387701f370eb39d45f08a4" } ,
{ file = "Pillow-8.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:0412516dcc9de9b0a1e0ae25a280015809de8270f134cc2c1e32c4eeb397cf30" } ,
{ file = "Pillow-8.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:bcb04ff12e79b28be6c9988f275e7ab69f01cc2ba319fb3114f87817bb7c74b6" } ,
{ file = "Pillow-8.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:0b9911ec70731711c3b6ebcde26caea620cbdd9dcb73c67b0730c8817f24711b" } ,
{ file = "Pillow-8.3.2-cp38-cp38-win32.whl" , hash = "sha256:ce2e5e04bb86da6187f96d7bab3f93a7877830981b37f0287dd6479e27a10341" } ,
{ file = "Pillow-8.3.2-cp38-cp38-win_amd64.whl" , hash = "sha256:35d27687f027ad25a8d0ef45dd5208ef044c588003cdcedf05afb00dbc5c2deb" } ,
{ file = "Pillow-8.3.2-cp39-cp39-macosx_10_10_x86_64.whl" , hash = "sha256:04835e68ef12904bc3e1fd002b33eea0779320d4346082bd5b24bec12ad9c3e9" } ,
{ file = "Pillow-8.3.2-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:10e00f7336780ca7d3653cf3ac26f068fa11b5a96894ea29a64d3dc4b810d630" } ,
{ file = "Pillow-8.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:2cde7a4d3687f21cffdf5bb171172070bb95e02af448c4c8b2f223d783214056" } ,
{ file = "Pillow-8.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1c3ff00110835bdda2b1e2b07f4a2548a39744bb7de5946dc8e95517c4fb2ca6" } ,
{ file = "Pillow-8.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:35d409030bf3bd05fa66fb5fdedc39c521b397f61ad04309c90444e893d05f7d" } ,
{ file = "Pillow-8.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:6bff50ba9891be0a004ef48828e012babaaf7da204d81ab9be37480b9020a82b" } ,
{ file = "Pillow-8.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:7dbfbc0020aa1d9bc1b0b8bcf255a7d73f4ad0336f8fd2533fcc54a4ccfb9441" } ,
{ file = "Pillow-8.3.2-cp39-cp39-win32.whl" , hash = "sha256:963ebdc5365d748185fdb06daf2ac758116deecb2277ec5ae98139f93844bc09" } ,
{ file = "Pillow-8.3.2-cp39-cp39-win_amd64.whl" , hash = "sha256:cc9d0dec711c914ed500f1d0d3822868760954dce98dfb0b7382a854aee55d19" } ,
{ file = "Pillow-8.3.2-pp36-pypy36_pp73-macosx_10_10_x86_64.whl" , hash = "sha256:2c661542c6f71dfd9dc82d9d29a8386287e82813b0375b3a02983feac69ef864" } ,
{ file = "Pillow-8.3.2-pp36-pypy36_pp73-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:548794f99ff52a73a156771a0402f5e1c35285bd981046a502d7e4793e8facaa" } ,
{ file = "Pillow-8.3.2-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:8b68f565a4175e12e68ca900af8910e8fe48aaa48fd3ca853494f384e11c8bcd" } ,
{ file = "Pillow-8.3.2-pp36-pypy36_pp73-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:838eb85de6d9307c19c655c726f8d13b8b646f144ca6b3771fa62b711ebf7624" } ,
{ file = "Pillow-8.3.2-pp36-pypy36_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:feb5db446e96bfecfec078b943cc07744cc759893cef045aa8b8b6d6aaa8274e" } ,
{ file = "Pillow-8.3.2-pp37-pypy37_pp73-macosx_10_10_x86_64.whl" , hash = "sha256:fc0db32f7223b094964e71729c0361f93db43664dd1ec86d3df217853cedda87" } ,
{ file = "Pillow-8.3.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:fd4fd83aa912d7b89b4b4a1580d30e2a4242f3936882a3f433586e5ab97ed0d5" } ,
{ file = "Pillow-8.3.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:d0c8ebbfd439c37624db98f3877d9ed12c137cadd99dde2d2eae0dab0bbfc355" } ,
{ file = "Pillow-8.3.2-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:6cb3dd7f23b044b0737317f892d399f9e2f0b3a02b22b2c692851fb8120d82c6" } ,
{ file = "Pillow-8.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:a66566f8a22561fc1a88dc87606c69b84fa9ce724f99522cf922c801ec68f5c1" } ,
{ file = "Pillow-8.3.2-pp37-pypy37_pp73-win_amd64.whl" , hash = "sha256:ce651ca46d0202c302a535d3047c55a0131a720cf554a578fc1b8a2aff0e7d96" } ,
{ file = "Pillow-8.3.2.tar.gz" , hash = "sha256:dde3f3ed8d00c72631bc19cbfff8ad3b6215062a5eed402381ad365f82f0c18c" } ,
2021-08-16 17:06:27 +02:00
]
platformdirs = [
2021-09-15 20:39:29 +02:00
{ file = "platformdirs-2.3.0-py3-none-any.whl" , hash = "sha256:8003ac87717ae2c7ee1ea5a84a1a61e87f3fbd16eb5aadba194ea30a9019f648" } ,
{ file = "platformdirs-2.3.0.tar.gz" , hash = "sha256:15b056538719b1c94bdaccb29e5f81879c7f7f0f4a153f46086d155dffcd4f0f" } ,
2020-12-29 13:59:16 +01:00
]
pluggy = [
2021-09-15 20:39:29 +02:00
{ file = "pluggy-1.0.0-py2.py3-none-any.whl" , hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3" } ,
{ file = "pluggy-1.0.0.tar.gz" , hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159" } ,
2020-12-29 13:59:16 +01:00
]
pprintpp = [
{ file = "pprintpp-0.4.0-py2.py3-none-any.whl" , hash = "sha256:b6b4dcdd0c0c0d75e4d7b2f21a9e933e5b2ce62b26e1a54537f9651ae5a5c01d" } ,
{ file = "pprintpp-0.4.0.tar.gz" , hash = "sha256:ea826108e2c7f49dc6d66c752973c3fc9749142a798d6b254e1e301cfdbc6403" } ,
]
2021-08-17 09:03:26 +02:00
psycopg2 = [
2021-09-16 09:47:20 +02:00
{ file = "psycopg2-2.8.6-cp27-cp27m-win32.whl" , hash = "sha256:068115e13c70dc5982dfc00c5d70437fe37c014c808acce119b5448361c03725" } ,
{ file = "psycopg2-2.8.6-cp27-cp27m-win_amd64.whl" , hash = "sha256:d160744652e81c80627a909a0e808f3c6653a40af435744de037e3172cf277f5" } ,
{ file = "psycopg2-2.8.6-cp34-cp34m-win32.whl" , hash = "sha256:b8cae8b2f022efa1f011cc753adb9cbadfa5a184431d09b273fb49b4167561ad" } ,
{ file = "psycopg2-2.8.6-cp34-cp34m-win_amd64.whl" , hash = "sha256:f22ea9b67aea4f4a1718300908a2fb62b3e4276cf00bd829a97ab5894af42ea3" } ,
{ file = "psycopg2-2.8.6-cp35-cp35m-win32.whl" , hash = "sha256:26e7fd115a6db75267b325de0fba089b911a4a12ebd3d0b5e7acb7028bc46821" } ,
{ file = "psycopg2-2.8.6-cp35-cp35m-win_amd64.whl" , hash = "sha256:00195b5f6832dbf2876b8bf77f12bdce648224c89c880719c745b90515233301" } ,
{ file = "psycopg2-2.8.6-cp36-cp36m-win32.whl" , hash = "sha256:a49833abfdede8985ba3f3ec641f771cca215479f41523e99dace96d5b8cce2a" } ,
{ file = "psycopg2-2.8.6-cp36-cp36m-win_amd64.whl" , hash = "sha256:f974c96fca34ae9e4f49839ba6b78addf0346777b46c4da27a7bf54f48d3057d" } ,
{ file = "psycopg2-2.8.6-cp37-cp37m-win32.whl" , hash = "sha256:6a3d9efb6f36f1fe6aa8dbb5af55e067db802502c55a9defa47c5a1dad41df84" } ,
{ file = "psycopg2-2.8.6-cp37-cp37m-win_amd64.whl" , hash = "sha256:56fee7f818d032f802b8eed81ef0c1232b8b42390df189cab9cfa87573fe52c5" } ,
{ file = "psycopg2-2.8.6-cp38-cp38-win32.whl" , hash = "sha256:ad2fe8a37be669082e61fb001c185ffb58867fdbb3e7a6b0b0d2ffe232353a3e" } ,
{ file = "psycopg2-2.8.6-cp38-cp38-win_amd64.whl" , hash = "sha256:56007a226b8e95aa980ada7abdea6b40b75ce62a433bd27cec7a8178d57f4051" } ,
{ file = "psycopg2-2.8.6-cp39-cp39-win32.whl" , hash = "sha256:2c93d4d16933fea5bbacbe1aaf8fa8c1348740b2e50b3735d1b0bf8154cbf0f3" } ,
{ file = "psycopg2-2.8.6-cp39-cp39-win_amd64.whl" , hash = "sha256:d5062ae50b222da28253059880a871dc87e099c25cb68acf613d9d227413d6f7" } ,
{ file = "psycopg2-2.8.6.tar.gz" , hash = "sha256:fb23f6c71107c37fd667cb4ea363ddeb936b348bbd6449278eb92c189699f543" } ,
2021-09-15 21:45:37 +02:00
]
2020-12-29 13:59:16 +01:00
py = [
{ file = "py-1.10.0-py2.py3-none-any.whl" , hash = "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a" } ,
{ file = "py-1.10.0.tar.gz" , hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3" } ,
]
pycodestyle = [
2021-04-28 19:42:51 +02:00
{ file = "pycodestyle-2.7.0-py2.py3-none-any.whl" , hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068" } ,
{ file = "pycodestyle-2.7.0.tar.gz" , hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef" } ,
2020-12-29 13:59:16 +01:00
]
pyflakes = [
2021-04-28 19:42:51 +02:00
{ file = "pyflakes-2.3.1-py2.py3-none-any.whl" , hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3" } ,
{ file = "pyflakes-2.3.1.tar.gz" , hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db" } ,
2020-12-29 13:59:16 +01:00
]
pyinventory = [
2021-09-15 21:33:30 +02:00
{ file = "PyInventory-0.9.4-py3-none-any.whl" , hash = "sha256:fd1420f32b952b831321b134a96187232c1d8474564df1bac43f0c7a07dd62f3" } ,
{ file = "PyInventory-0.9.4.tar.gz" , hash = "sha256:e1b43540f77793811d4edfcdcc82db5f73697f96ce44861c0cfa07a0b91df7e6" } ,
2020-12-29 13:59:16 +01:00
]
pyparsing = [
{ file = "pyparsing-2.4.7-py2.py3-none-any.whl" , hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b" } ,
{ file = "pyparsing-2.4.7.tar.gz" , hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1" } ,
]
pytest = [
2021-09-15 20:39:29 +02:00
{ file = "pytest-6.2.5-py3-none-any.whl" , hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134" } ,
{ file = "pytest-6.2.5.tar.gz" , hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89" } ,
2020-12-29 13:59:16 +01:00
]
pytest-cov = [
2021-08-16 17:06:27 +02:00
{ file = "pytest-cov-2.12.1.tar.gz" , hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7" } ,
{ file = "pytest_cov-2.12.1-py2.py3-none-any.whl" , hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a" } ,
2020-12-29 13:59:16 +01:00
]
pytest-django = [
2021-08-16 17:06:27 +02:00
{ file = "pytest-django-4.4.0.tar.gz" , hash = "sha256:b5171e3798bf7e3fc5ea7072fe87324db67a4dd9f1192b037fed4cc3c1b7f455" } ,
{ file = "pytest_django-4.4.0-py3-none-any.whl" , hash = "sha256:65783e78382456528bd9d79a35843adde9e6a47347b20464eb2c885cb0f1f606" } ,
2020-12-29 13:59:16 +01:00
]
python-stdnum = [
2021-04-28 19:42:51 +02:00
{ file = "python-stdnum-1.16.tar.gz" , hash = "sha256:4248d898042a801fc4eff96fbfe4bf63a43324854efe3b5534718c1c195c6f43" } ,
{ file = "python_stdnum-1.16-py2.py3-none-any.whl" , hash = "sha256:2e2c56c548ca166b95547a8d748f4d71320a5b4896960717c8e6380e08d993a5" } ,
2020-12-29 13:59:16 +01:00
]
pytz = [
2021-04-28 19:42:51 +02:00
{ file = "pytz-2021.1-py2.py3-none-any.whl" , hash = "sha256:eb10ce3e7736052ed3623d49975ce333bcd712c7bb19a58b9e2089d4057d0798" } ,
{ file = "pytz-2021.1.tar.gz" , hash = "sha256:83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da" } ,
2020-12-29 13:59:16 +01:00
]
pyupgrade = [
2021-09-15 20:39:29 +02:00
{ file = "pyupgrade-2.26.0-py2.py3-none-any.whl" , hash = "sha256:fcfde421775d356eb1e7da443fb23fad6dceca411d8c014acebaed1c2bfeed52" } ,
{ file = "pyupgrade-2.26.0.tar.gz" , hash = "sha256:03eba5ee3494c334d634a272774a30b0aa28af4f5f07f1d3f5d5bedee86c5bcb" } ,
2020-12-29 13:59:16 +01:00
]
pyyaml = [
2021-04-28 19:42:51 +02:00
{ file = "PyYAML-5.4.1-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922" } ,
{ file = "PyYAML-5.4.1-cp27-cp27m-win32.whl" , hash = "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393" } ,
{ file = "PyYAML-5.4.1-cp27-cp27m-win_amd64.whl" , hash = "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8" } ,
{ file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-win32.whl" , hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl" , hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-win32.whl" , hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-win32.whl" , hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl" , hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-win32.whl" , hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl" , hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db" } ,
{ file = "PyYAML-5.4.1.tar.gz" , hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e" } ,
2020-12-29 13:59:16 +01:00
]
redis = [
{ file = "redis-3.5.3-py2.py3-none-any.whl" , hash = "sha256:432b788c4530cfe16d8d943a09d40ca6c16149727e4afe8c2c9d5580c59d9f24" } ,
{ file = "redis-3.5.3.tar.gz" , hash = "sha256:0e7e0cfca8660dea8b7d5cd8c4f6c5e29e11f31158c0b0ae91a397f00e5a05a2" } ,
]
regex = [
2021-09-15 20:39:29 +02:00
{ file = "regex-2021.8.28-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:9d05ad5367c90814099000442b2125535e9d77581855b9bee8780f1b41f2b1a2" } ,
{ file = "regex-2021.8.28-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f3bf1bc02bc421047bfec3343729c4bbbea42605bcfd6d6bfe2c07ade8b12d2a" } ,
{ file = "regex-2021.8.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5f6a808044faae658f546dd5f525e921de9fa409de7a5570865467f03a626fc0" } ,
{ file = "regex-2021.8.28-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:a617593aeacc7a691cc4af4a4410031654f2909053bd8c8e7db837f179a630eb" } ,
{ file = "regex-2021.8.28-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:79aef6b5cd41feff359acaf98e040844613ff5298d0d19c455b3d9ae0bc8c35a" } ,
{ file = "regex-2021.8.28-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:0fc1f8f06977c2d4f5e3d3f0d4a08089be783973fc6b6e278bde01f0544ff308" } ,
{ file = "regex-2021.8.28-cp310-cp310-win32.whl" , hash = "sha256:6eebf512aa90751d5ef6a7c2ac9d60113f32e86e5687326a50d7686e309f66ed" } ,
{ file = "regex-2021.8.28-cp310-cp310-win_amd64.whl" , hash = "sha256:ac88856a8cbccfc14f1b2d0b829af354cc1743cb375e7f04251ae73b2af6adf8" } ,
{ file = "regex-2021.8.28-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:c206587c83e795d417ed3adc8453a791f6d36b67c81416676cad053b4104152c" } ,
{ file = "regex-2021.8.28-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e8690ed94481f219a7a967c118abaf71ccc440f69acd583cab721b90eeedb77c" } ,
{ file = "regex-2021.8.28-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:328a1fad67445550b982caa2a2a850da5989fd6595e858f02d04636e7f8b0b13" } ,
{ file = "regex-2021.8.28-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:c7cb4c512d2d3b0870e00fbbac2f291d4b4bf2634d59a31176a87afe2777c6f0" } ,
{ file = "regex-2021.8.28-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:66256b6391c057305e5ae9209941ef63c33a476b73772ca967d4a2df70520ec1" } ,
{ file = "regex-2021.8.28-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:8e44769068d33e0ea6ccdf4b84d80c5afffe5207aa4d1881a629cf0ef3ec398f" } ,
{ file = "regex-2021.8.28-cp36-cp36m-win32.whl" , hash = "sha256:08d74bfaa4c7731b8dac0a992c63673a2782758f7cfad34cf9c1b9184f911354" } ,
{ file = "regex-2021.8.28-cp36-cp36m-win_amd64.whl" , hash = "sha256:abb48494d88e8a82601af905143e0de838c776c1241d92021e9256d5515b3645" } ,
{ file = "regex-2021.8.28-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:b4c220a1fe0d2c622493b0a1fd48f8f991998fb447d3cd368033a4b86cf1127a" } ,
{ file = "regex-2021.8.28-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:d4a332404baa6665b54e5d283b4262f41f2103c255897084ec8f5487ce7b9e8e" } ,
{ file = "regex-2021.8.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:c61dcc1cf9fd165127a2853e2c31eb4fb961a4f26b394ac9fe5669c7a6592892" } ,
{ file = "regex-2021.8.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:ee329d0387b5b41a5dddbb6243a21cb7896587a651bebb957e2d2bb8b63c0791" } ,
{ file = "regex-2021.8.28-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:f60667673ff9c249709160529ab39667d1ae9fd38634e006bec95611f632e759" } ,
{ file = "regex-2021.8.28-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:b844fb09bd9936ed158ff9df0ab601e2045b316b17aa8b931857365ea8586906" } ,
{ file = "regex-2021.8.28-cp37-cp37m-win32.whl" , hash = "sha256:4cde065ab33bcaab774d84096fae266d9301d1a2f5519d7bd58fc55274afbf7a" } ,
{ file = "regex-2021.8.28-cp37-cp37m-win_amd64.whl" , hash = "sha256:1413b5022ed6ac0d504ba425ef02549a57d0f4276de58e3ab7e82437892704fc" } ,
{ file = "regex-2021.8.28-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:ed4b50355b066796dacdd1cf538f2ce57275d001838f9b132fab80b75e8c84dd" } ,
{ file = "regex-2021.8.28-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:28fc475f560d8f67cc8767b94db4c9440210f6958495aeae70fac8faec631797" } ,
{ file = "regex-2021.8.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:bdc178caebd0f338d57ae445ef8e9b737ddf8fbc3ea187603f65aec5b041248f" } ,
{ file = "regex-2021.8.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:999ad08220467b6ad4bd3dd34e65329dd5d0df9b31e47106105e407954965256" } ,
{ file = "regex-2021.8.28-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:808ee5834e06f57978da3e003ad9d6292de69d2bf6263662a1a8ae30788e080b" } ,
{ file = "regex-2021.8.28-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:d5111d4c843d80202e62b4fdbb4920db1dcee4f9366d6b03294f45ed7b18b42e" } ,
{ file = "regex-2021.8.28-cp38-cp38-win32.whl" , hash = "sha256:473858730ef6d6ff7f7d5f19452184cd0caa062a20047f6d6f3e135a4648865d" } ,
{ file = "regex-2021.8.28-cp38-cp38-win_amd64.whl" , hash = "sha256:31a99a4796bf5aefc8351e98507b09e1b09115574f7c9dbb9cf2111f7220d2e2" } ,
{ file = "regex-2021.8.28-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:04f6b9749e335bb0d2f68c707f23bb1773c3fb6ecd10edf0f04df12a8920d468" } ,
{ file = "regex-2021.8.28-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:9b006628fe43aa69259ec04ca258d88ed19b64791693df59c422b607b6ece8bb" } ,
{ file = "regex-2021.8.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:121f4b3185feaade3f85f70294aef3f777199e9b5c0c0245c774ae884b110a2d" } ,
{ file = "regex-2021.8.28-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:a577a21de2ef8059b58f79ff76a4da81c45a75fe0bfb09bc8b7bb4293fa18983" } ,
{ file = "regex-2021.8.28-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1743345e30917e8c574f273f51679c294effba6ad372db1967852f12c76759d8" } ,
{ file = "regex-2021.8.28-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:e1e8406b895aba6caa63d9fd1b6b1700d7e4825f78ccb1e5260551d168db38ed" } ,
{ file = "regex-2021.8.28-cp39-cp39-win32.whl" , hash = "sha256:ed283ab3a01d8b53de3a05bfdf4473ae24e43caee7dcb5584e86f3f3e5ab4374" } ,
{ file = "regex-2021.8.28-cp39-cp39-win_amd64.whl" , hash = "sha256:610b690b406653c84b7cb6091facb3033500ee81089867ee7d59e675f9ca2b73" } ,
{ file = "regex-2021.8.28.tar.gz" , hash = "sha256:f585cbbeecb35f35609edccb95efd95a3e35824cd7752b586503f7e6087303f1" } ,
2020-12-29 13:59:16 +01:00
]
requests = [
2021-08-16 17:06:27 +02:00
{ file = "requests-2.26.0-py2.py3-none-any.whl" , hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24" } ,
{ file = "requests-2.26.0.tar.gz" , hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7" } ,
2020-12-29 13:59:16 +01:00
]
six = [
2021-05-11 18:09:20 +02:00
{ file = "six-1.16.0-py2.py3-none-any.whl" , hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } ,
{ file = "six-1.16.0.tar.gz" , hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926" } ,
2020-12-29 13:59:16 +01:00
]
sqlparse = [
2021-09-15 20:39:29 +02:00
{ file = "sqlparse-0.4.2-py3-none-any.whl" , hash = "sha256:48719e356bb8b42991bdbb1e8b83223757b93789c00910a616a071910ca4a64d" } ,
{ file = "sqlparse-0.4.2.tar.gz" , hash = "sha256:0c00730c74263a94e5a9919ade150dfc3b19c574389985446148402998287dae" } ,
2020-12-29 13:59:16 +01:00
]
tablib = [
{ file = "tablib-3.0.0-py3-none-any.whl" , hash = "sha256:41aa40981cddd7ec4d1fabeae7c38d271601b306386bd05b5c3bcae13e5aeb20" } ,
{ file = "tablib-3.0.0.tar.gz" , hash = "sha256:f83cac08454f225a34a305daa20e2110d5e6335135d505f93bc66583a5f9c10d" } ,
]
tokenize-rt = [
2021-04-28 19:42:51 +02:00
{ file = "tokenize_rt-4.1.0-py2.py3-none-any.whl" , hash = "sha256:b37251fa28c21e8cce2e42f7769a35fba2dd2ecafb297208f9a9a8add3ca7793" } ,
{ file = "tokenize_rt-4.1.0.tar.gz" , hash = "sha256:ab339b5ff829eb5e198590477f9c03c84e762b3e455e74c018956e7e326cbc70" } ,
2020-12-29 13:59:16 +01:00
]
toml = [
{ file = "toml-0.10.2-py2.py3-none-any.whl" , hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b" } ,
{ file = "toml-0.10.2.tar.gz" , hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" } ,
]
2021-08-16 17:06:27 +02:00
tomli = [
{ file = "tomli-1.2.1-py3-none-any.whl" , hash = "sha256:8dd0e9524d6f386271a36b41dbf6c57d8e32fd96fd22b6584679dc569d20899f" } ,
{ file = "tomli-1.2.1.tar.gz" , hash = "sha256:a5b75cb6f3968abb47af1b40c1819dc519ea82bcc065776a866e8d74c5ca9442" } ,
]
2020-12-29 13:59:16 +01:00
tox = [
2021-09-15 20:39:29 +02:00
{ file = "tox-3.24.3-py2.py3-none-any.whl" , hash = "sha256:9fbf8e2ab758b2a5e7cb2c72945e4728089934853076f67ef18d7575c8ab6b88" } ,
{ file = "tox-3.24.3.tar.gz" , hash = "sha256:c6c4e77705ada004283610fd6d9ba4f77bc85d235447f875df9f0ba1bc23b634" } ,
2020-12-29 13:59:16 +01:00
]
typed-ast = [
2021-04-28 19:42:51 +02:00
{ file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:2068531575a125b87a41802130fa7e29f26c09a2833fea68d9a40cf33902eba6" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:c907f561b1e83e93fad565bac5ba9c22d96a54e7ea0267c708bffe863cbe4075" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-manylinux2014_aarch64.whl" , hash = "sha256:1b3ead4a96c9101bef08f9f7d1217c096f31667617b58de957f690c92378b528" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-win32.whl" , hash = "sha256:dde816ca9dac1d9c01dd504ea5967821606f02e510438120091b84e852367428" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-win_amd64.whl" , hash = "sha256:777a26c84bea6cd934422ac2e3b78863a37017618b6e5c08f92ef69853e765d3" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:52b1eb8c83f178ab787f3a4283f68258525f8d70f778a2f6dd54d3b5e5fb4341" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:01ae5f73431d21eead5015997ab41afa53aa1fbe252f9da060be5dad2c730ace" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:c190f0899e9f9f8b6b7863debfb739abcb21a5c054f911ca3596d12b8a4c4c7f" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-win32.whl" , hash = "sha256:398e44cd480f4d2b7ee8d98385ca104e35c81525dd98c519acff1b79bdaac363" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-win_amd64.whl" , hash = "sha256:bff6ad71c81b3bba8fa35f0f1921fb24ff4476235a6e94a26ada2e54370e6da7" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:0fb71b8c643187d7492c1f8352f2c15b4c4af3f6338f21681d3681b3dc31a266" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-win32.whl" , hash = "sha256:aee0c1256be6c07bd3e1263ff920c325b59849dc95392a05f258bb9b259cf39c" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-win_amd64.whl" , hash = "sha256:9ad2c92ec681e02baf81fdfa056fe0d818645efa9af1f1cd5fd6f1bd2bdfd805" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:b36b4f3920103a25e1d5d024d155c504080959582b928e91cb608a65c3a49e1a" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-win32.whl" , hash = "sha256:f2362f3cb0f3172c42938946dbc5b7843c2a28aec307c49100c8b38764eb6927" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-win_amd64.whl" , hash = "sha256:dd4a21253f42b8d2b48410cb31fe501d32f8b9fbeb1f55063ad102fe9c425e40" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-win32.whl" , hash = "sha256:209596a4ec71d990d71d5e0d312ac935d86930e6eecff6ccc7007fe54d703808" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-win_amd64.whl" , hash = "sha256:9c6d1a54552b5330bc657b7ef0eae25d00ba7ffe85d9ea8ae6540d2197a3788c" } ,
{ file = "typed_ast-1.4.3.tar.gz" , hash = "sha256:fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65" } ,
2020-12-29 13:59:16 +01:00
]
typing-extensions = [
2021-09-15 20:39:29 +02:00
{ file = "typing_extensions-3.10.0.2-py2-none-any.whl" , hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7" } ,
{ file = "typing_extensions-3.10.0.2-py3-none-any.whl" , hash = "sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34" } ,
{ file = "typing_extensions-3.10.0.2.tar.gz" , hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e" } ,
2020-12-29 13:59:16 +01:00
]
urllib3 = [
2021-08-16 17:06:27 +02:00
{ file = "urllib3-1.26.6-py2.py3-none-any.whl" , hash = "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4" } ,
{ file = "urllib3-1.26.6.tar.gz" , hash = "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f" } ,
2020-12-29 13:59:16 +01:00
]
virtualenv = [
2021-08-16 17:06:27 +02:00
{ file = "virtualenv-20.7.2-py2.py3-none-any.whl" , hash = "sha256:e4670891b3a03eb071748c569a87cceaefbf643c5bac46d996c5a45c34aa0f06" } ,
{ file = "virtualenv-20.7.2.tar.gz" , hash = "sha256:9ef4e8ee4710826e98ff3075c9a4739e2cb1040de6a2a8d35db0055840dc96a0" } ,
2020-12-29 13:59:16 +01:00
]
webencodings = [
{ file = "webencodings-0.5.1-py2.py3-none-any.whl" , hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78" } ,
{ file = "webencodings-0.5.1.tar.gz" , hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923" } ,
]
xlrd = [
{ file = "xlrd-2.0.1-py2.py3-none-any.whl" , hash = "sha256:6a33ee89877bd9abc1158129f6e94be74e2679636b8a205b43b85206c3f0bbdd" } ,
{ file = "xlrd-2.0.1.tar.gz" , hash = "sha256:f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88" } ,
]
xlwt = [
{ file = "xlwt-1.3.0-py2.py3-none-any.whl" , hash = "sha256:a082260524678ba48a297d922cc385f58278b8aa68741596a87de01a9c628b2e" } ,
{ file = "xlwt-1.3.0.tar.gz" , hash = "sha256:c59912717a9b28f1a3c2a98fd60741014b06b043936dcecbc113eaaada156c88" } ,
]
zipp = [
2021-08-16 17:06:27 +02:00
{ file = "zipp-3.5.0-py3-none-any.whl" , hash = "sha256:957cfda87797e389580cb8b9e3870841ca991e2125350677b2ca83a0e99390a3" } ,
{ file = "zipp-3.5.0.tar.gz" , hash = "sha256:f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4" } ,
2020-12-29 13:59:16 +01:00
]