forked from irrdnet/irrd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.txt
57 lines (51 loc) · 2.08 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Many of these packages are also specified in setup.py, and versions
# should be kept in sync. The list in setup.py is shorter, as it only
# includes packages needed for deployment.
python-gnupg==0.4.9 # Integration with gpg for key-cert objects
passlib==1.7.4 # Password hashing for CRYPT-PW and MD5-PW
bcrypt==3.2.2 # bcrypt support
IPy==1.01 # IP address parsing
ordered-set==4.1.0
beautifultable==0.8.0 # pyup: <1.0.0
PyYAML==6.0 # parsing YAML config files
datrie==0.8.2 # efficient route searching, used for RPKI
setproctitle==1.2.3 # updating the process title for useful ps output
python-daemon==2.3.0 # daemonising the main process
pid==3.0.4 # managing PID files
redis==4.3.3 # preloaded data storage & sync through redis
hiredis==2.0.0 # improved redis response parsing performance
requests==2.28.0 # HTTP request handling
pytz==2022.1
ariadne==0.15.1
uvicorn==0.18.2 # ASGI server
uvicorn[standard]==0.18.2; python_version > '3.7' # pyup: <0.17 # ASGI server extras
starlette==0.17.1 # pyup: <0.18 # ariadne conflict
psutil==5.9.1 # Process management
asgiref==3.5.2 # ASGI utilities
pydantic==1.9.1 # Input validation
six==1.16.0 # Used in vendored dotteddict
# Database connections and management
psycopg2-binary==2.9.3; platform_python_implementation == "CPython"
psycopg2cffi==2.9.0; platform_python_implementation == "PyPy"
SQLAlchemy==1.3.24 # pyup: <1.4 #475
alembic==1.8.0
ujson==5.3.0
# Testing and related packages
pytest==7.1.2
pytest-cov==3.0.0
pytest-env==0.6.2
coverage==6.4.1
twisted==22.4.0 # Used for a mock email server in integration tests
python-graphql-client==0.4.2
# Documentation generation
Sphinx==4.3.2 # pyup: <5 # importlib-metadata conflict with flake8
sphinxcontrib-spelling==7.6.0
sphinx-material==0.0.35
# Code style and type checks
mypy==0.961; platform_python_implementation == "CPython"
flake8==4.0.1
pep8-naming==0.13.0
# Creating python packages
setuptools==62.6.0
wheel==0.37.1 # also require for installing, #488
twine==4.0.1