mirror of
https://github.com/hemna/aprsd-slack-plugin.git
synced 2025-04-09 13:08:33 -04:00
Updates for release
This commit is contained in:
parent
7dc999b5e3
commit
0b26b7e478
@ -1,3 +1,9 @@
|
||||
CHANGES
|
||||
=======
|
||||
1.0.0 - First release working against APRSD 1.0.0
|
||||
|
||||
* Make aprsd a requirement
|
||||
|
||||
v1.0
|
||||
----
|
||||
|
||||
* Initial commit
|
||||
|
@ -1,5 +1,5 @@
|
||||
aprsd_slack_plugin
|
||||
================
|
||||
==================
|
||||
|
||||
.. image:: https://github.com/hemna/aprsd-slack-plugin/workflows/python/badge.svg
|
||||
:target: https://github.com/hemna/aprsd-slack-plugin/actions
|
||||
|
@ -6,12 +6,14 @@
|
||||
#
|
||||
alabaster==0.7.12 # via sphinx
|
||||
appdirs==1.4.4 # via black, virtualenv
|
||||
aprsd==1.0.0 # via -r dev-requirements.in
|
||||
attrs==20.3.0 # via pytest
|
||||
babel==2.9.0 # via sphinx
|
||||
black==20.8b1 # via -r dev-requirements.in
|
||||
certifi==2020.12.5 # via requests
|
||||
chardet==3.0.4 # via requests
|
||||
click==7.1.2 # via black
|
||||
click-completion==0.5.2 # via aprsd
|
||||
click==7.1.2 # via aprsd, black, click-completion
|
||||
coverage==5.3 # via pytest-cov
|
||||
distlib==0.3.1 # via virtualenv
|
||||
docutils==0.16 # via sphinx
|
||||
@ -20,18 +22,19 @@ flake8-polyfill==1.0.2 # via pep8-naming
|
||||
flake8==3.8.4 # via -r dev-requirements.in, flake8-polyfill
|
||||
idna==2.10 # via requests
|
||||
imagesize==1.2.0 # via sphinx
|
||||
imapclient==2.1.0 # via aprsd
|
||||
iniconfig==1.1.1 # via pytest
|
||||
isort==5.6.4 # via -r dev-requirements.in
|
||||
jinja2==2.11.2 # via sphinx
|
||||
jinja2==2.11.2 # via click-completion, sphinx
|
||||
markupsafe==1.1.1 # via jinja2
|
||||
mccabe==0.6.1 # via flake8
|
||||
mypy-extensions==0.4.3 # via black, mypy
|
||||
mypy==0.790 # via -r dev-requirements.in
|
||||
packaging==20.8 # via pytest, sphinx, tox
|
||||
pathspec==0.8.1 # via black
|
||||
pbr==5.5.1 # via -r dev-requirements.in
|
||||
pbr==5.5.1 # via -r dev-requirements.in, aprsd
|
||||
pep8-naming==0.11.1 # via -r dev-requirements.in
|
||||
pluggy==0.13.1 # via pytest, tox
|
||||
pluggy==0.13.1 # via aprsd, pytest, tox
|
||||
py==1.10.0 # via pytest, tox
|
||||
pycodestyle==2.6.0 # via flake8
|
||||
pyflakes==2.2.0 # via flake8
|
||||
@ -40,9 +43,11 @@ pyparsing==2.4.7 # via packaging
|
||||
pytest-cov==2.10.1 # via -r dev-requirements.in
|
||||
pytest==6.2.0 # via -r dev-requirements.in, pytest-cov
|
||||
pytz==2020.4 # via babel
|
||||
pyyaml==5.3.1 # via aprsd
|
||||
regex==2020.11.13 # via black
|
||||
requests==2.25.0 # via sphinx
|
||||
six==1.15.0 # via tox, virtualenv
|
||||
requests==2.25.0 # via aprsd, sphinx
|
||||
shellingham==1.3.2 # via click-completion
|
||||
six==1.15.0 # via aprsd, click-completion, imapclient, tox, virtualenv
|
||||
snowballstemmer==2.0.0 # via sphinx
|
||||
sphinx==3.3.1 # via -r dev-requirements.in
|
||||
sphinxcontrib-applehelp==1.0.2 # via sphinx
|
||||
@ -60,4 +65,3 @@ virtualenv==20.2.2 # via tox
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# setuptools
|
||||
aprsd
|
||||
|
@ -4,7 +4,7 @@
|
||||
contain the root `toctree` directive.
|
||||
|
||||
``aprsd_slack_plugin`` Documentation
|
||||
======================
|
||||
====================================
|
||||
|
||||
.. include:: ../README.rst
|
||||
|
||||
|
@ -4,14 +4,25 @@
|
||||
#
|
||||
# pip-compile
|
||||
#
|
||||
click==7.1.2 # via flask
|
||||
aprsd==1.0.0 # via -r requirements.in
|
||||
certifi==2020.12.5 # via requests
|
||||
chardet==3.0.4 # via requests
|
||||
click-completion==0.5.2 # via aprsd
|
||||
click==7.1.2 # via aprsd, click-completion, flask
|
||||
flask==1.1.2 # via slackeventsapi
|
||||
idna==2.10 # via requests
|
||||
imapclient==2.1.0 # via aprsd
|
||||
itsdangerous==1.1.0 # via flask, slackeventsapi
|
||||
jinja2==2.11.2 # via flask, slackeventsapi
|
||||
jinja2==2.11.2 # via click-completion, flask, slackeventsapi
|
||||
markupsafe==1.1.1 # via jinja2, slackeventsapi
|
||||
pbr==5.5.1 # via -r requirements.in
|
||||
pbr==5.5.1 # via -r requirements.in, aprsd
|
||||
pluggy==0.13.1 # via aprsd
|
||||
pyee==7.0.4 # via slackeventsapi
|
||||
pyyaml==5.3.1 # via aprsd
|
||||
requests==2.25.0 # via aprsd
|
||||
shellingham==1.3.2 # via click-completion
|
||||
six==1.15.0 # via aprsd, click-completion, imapclient
|
||||
slack-sdk==3.1.0 # via -r requirements.in
|
||||
slackeventsapi==2.2.1 # via -r requirements.in
|
||||
urllib3==1.26.2 # via requests
|
||||
werkzeug==1.0.1 # via flask
|
||||
aprsd
|
||||
|
@ -3,6 +3,7 @@ name = aprsd_slack_plugin
|
||||
summary = Amateur radio APRS daemon which listens for messages and responds
|
||||
description-file =
|
||||
README.rst
|
||||
long-description-content-type = text/x-rst; charset=UTF-8
|
||||
author = Walter A. Boring IV
|
||||
author-email = something@somewhere.com
|
||||
classifier =
|
||||
|
Loading…
Reference in New Issue
Block a user