Skip to content

Commit

Permalink
Added keyring to list of prerequisites.
Browse files Browse the repository at this point in the history
Needed to store passwords.
  • Loading branch information
trmrsh committed Dec 20, 2021
1 parent 6beafa0 commit 0e8e568
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.rst
Expand Up @@ -61,6 +61,9 @@ your O/S package manager. e.g. under fedora, Cython appears as
Has some features that the pure python implementation in astropy
lacks.

keyring:
Used in 'logsearch' to store some passwords safely.

matplotlib :
standard plotting package for Python. You will also need
a Qt backend. In opensuse for instance the package
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -91,7 +91,7 @@
install_requires=[
'sep', 'numpy', 'astropy', 'matplotlib', 'requests',
'numba', 'websocket-client', 'fitsio', 'pandas', 'Cython',
'urllib3>=1.26.5'
'urllib3>=1.26.5', 'keyring'
],

# Makes significant use of f-strings which came in 3.6
Expand Down

0 comments on commit 0e8e568

Please sign in to comment.