Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Jul 23, 2019
1 parent b81fa36 commit 7901834
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include LICENSE
recursive-include docs *.py *.rst Makefile
recursive-include examples *.html *.py
recursive-include tests *.bin *.pem *.py
11 changes: 10 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
aioquic
=======

|rtd| |travis| |codecov| |black|
|rtd| |pypi-v| |pypi-pyversions| |pypi-l| |travis| |codecov| |black|

.. |rtd| image:: https://readthedocs.org/projects/aioquic/badge/?version=latest
:target: https://aioquic.readthedocs.io/

.. |pypi-v| image:: https://img.shields.io/pypi/v/aioquic.svg
:target: https://pypi.python.org/pypi/aioquic

.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/aioquic.svg
:target: https://pypi.python.org/pypi/aioquic

.. |pypi-l| image:: https://img.shields.io/pypi/l/aioquic.svg
:target: https://pypi.python.org/pypi/aioquic

.. |travis| image:: https://img.shields.io/travis/com/aiortc/aioquic.svg
:target: https://travis-ci.com/aiortc/aioquic

Expand Down
11 changes: 10 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
aioquic
=======

|travis| |codecov|
|pypi-v| |pypi-pyversions| |pypi-l| |travis| |codecov|

.. |pypi-v| image:: https://img.shields.io/pypi/v/aioquic.svg
:target: https://pypi.python.org/pypi/aioquic

.. |pypi-pyversions| image:: https://img.shields.io/pypi/pyversions/aioquic.svg
:target: https://pypi.python.org/pypi/aioquic

.. |pypi-l| image:: https://img.shields.io/pypi/l/aioquic.svg
:target: https://pypi.python.org/pypi/aioquic

.. |travis| image:: https://img.shields.io/travis/com/aiortc/aioquic.svg
:target: https://travis-ci.com/aiortc/aioquic
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setuptools.setup(
name='aioquic',
version='0.1.0',
version='0.2.0',
description='An implementation of QUIC',
long_description=long_description,
url='https://github.com/aiortc/aioquic',
Expand Down Expand Up @@ -42,7 +42,13 @@
],
)
],
packages=['aioquic'],
packages=[
'aioquic',
'aioquic.asyncio',
'aioquic.h0',
'aioquic.h3',
'aioquic.quic',
],
install_requires=[
'cryptography >= 2.5',
'dataclasses; python_version < "3.7"',
Expand Down

0 comments on commit 7901834

Please sign in to comment.