Files
peeringdb-peeringdb/pyproject.toml
T
Stefan Pratter 0784265f80 Support 202308 test performance (#1440)
* Sorting icon from google material icons #1419
Manual IX-F import request queue can get stuck #1182
IX Object Creation Per Policy #1364
Creating a new network not possible #1401
IX-F Importer: Cosmetic issue with "resolved" emails and double-slashes in URLs after the FQDN #1334
Add a "Delete Affiliation" button/option to the profile #1226
Redis and negative caching #1431

* linting

* update gen_docs to use py3.11

* fix issue with api docs schema regen

* regen apidoc schema and db schema graph

* fix username validation for social media

* Add test case for social media validation

* linting

* tests shouldnt use redis

* also fix session cache setup (although not used atm)

* linting

* all caches to localmemcache during testing

---------

Co-authored-by: 20C <code@20c.com>
Co-authored-by: Matt Griswold <grizz@20c.com>
2023-09-12 20:54:04 -05:00

106 lines
2.6 KiB
TOML

[tool.poetry]
name = "peeringdb_server"
version = "2.50.0"
description = "source code for PeeringDB.com"
readme = "README.md"
repository = "https://github.com/peeringdb/peeringdb"
authors = [ "PeeringDB <support@peeringdb.com>",]
license = "BSD-2-Clause"
[tool.poetry.dependencies]
python = "^3.9"
# core requirements
django = "^4.2"
django-inet = ">=1.1.1"
django-handleref = ">=2"
django-peeringdb = "==3.2.0"
djangorestframework = ">=3.14.0"
mysqlclient = ">=2.1.1"
redis = ">=5.0.0"
hiredis = ">=2.2.3"
# locked to support_202306 branch until that is tagged and released to pypi
peeringdb = { git = "https://github.com/peeringdb/peeringdb-py.git", branch = "support_202306" }
uwsgi = ">=2.0.14"
# ancilary packages
bleach = ">=2.1.3"
django-allauth = ">=0.54.0"
django-simple-captcha = ">=0.5.17"
django-autocomplete-light = ">=3.9.4"
django-bootstrap5 = "^23.1"
django-cors-headers = ">=3.14.0"
django-countries = ">=7.5.1"
django-crispy-forms = ">=2.0"
django-csp = "^3.7"
django-debug-toolbar = ">=4.0.0"
django-elasticsearch-dsl = ">=7.3"
django-extensions = ">=1.3.3"
django-grainy = ">=2"
django-grappelli = ">=2.10.1"
django-import-export = ">2.8.0,<3"
django-hashers-passlib = { git = "https://github.com/mathiasertl/django-hashers-passlib.git" }
django-oauth-toolkit = ">=2"
django-phonenumber-field = ">=0.6"
django-ratelimit = ">=4.0.0"
django-rest-swagger = ">=2.1.2"
djangorestframework-api-key = ">=2.3.0"
django-structlog = ">=2.2.0"
django-tables2 = ">=1.0.4"
django-vanilla-views = ">=1.0.2"
django-security-keys = ">=1.1.0"
googlemaps = ">=2.5.1"
markdown = ">=2.6.7"
passlib = ">=1.7.1"
phonenumbers = ">=8.11.1"
schema = ">=0.7.5"
rdap = "==1.3.1"
unidecode = ">=1.0.23"
# these should just be pulled in automatically?
django-reversion = ">=4, <5"
certifi = ">=2017.11.5"
tld = ">=0.7.6"
# deprecated from drf -- used by rest swagger
coreapi = ">=2.3.1"
# FIXME: 1.15.0 has migration issues and also breaks
# emailing of one time password
django-two-factor-auth = ">=1.11,<1.15.0"
grainy = ">=1.7,<2"
django-haystack = "<4"
whoosh = "<3"
geopy = ">=2.3.0"
[tool.poetry.group.dev.dependencies]
# testing
pytest = ">=6"
pytest-cov = "*"
pytest-django = ">=2.9.1"
pytest-filedata = ">=0.1.0"
pytest-mock = ">=3.3.1"
jsonschema = ">=2.6.0"
# selenium testing
selenium = "^4.4.3"
webdriver-manager = "^3.8.3"
# linting
black = ">=20"
isort = ">=5.7"
flake8 = ">=3.8"
pre-commit = ">=2.13"
pyupgrade = ">=2.19"
# docs
pymdgen = ">=1"
mkdocs = ">=1.1.2"
markdown-include = ">=0.5,<1"
pydot = ">=1.4.2"
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3