diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 index 312ca28ea1f9cb36c9feb19bf00434a868ed155d..0000000000000000000000000000000000000000 --- a/MANIFEST +++ /dev/null @@ -1,39 +0,0 @@ -# file GENERATED by distutils, do NOT edit -setup.cfg -setup.py -coolamqp\__init__.py -coolamqp\exceptions.py -coolamqp\objects.py -coolamqp\attaches\__init__.py -coolamqp\attaches\agroup.py -coolamqp\attaches\channeler.py -coolamqp\attaches\consumer.py -coolamqp\attaches\publisher.py -coolamqp\attaches\utils.py -coolamqp\clustering\__init__.py -coolamqp\clustering\cluster.py -coolamqp\clustering\events.py -coolamqp\clustering\single.py -coolamqp\framing\__init__.py -coolamqp\framing\base.py -coolamqp\framing\definitions.py -coolamqp\framing\field_table.py -coolamqp\framing\frames.py -coolamqp\framing\compilation\__init__.py -coolamqp\framing\compilation\compile_definitions.py -coolamqp\framing\compilation\content_property.py -coolamqp\framing\compilation\textcode_fields.py -coolamqp\framing\compilation\utilities.py -coolamqp\uplink\__init__.py -coolamqp\uplink\handshake.py -coolamqp\uplink\heartbeat.py -coolamqp\uplink\connection\__init__.py -coolamqp\uplink\connection\connection.py -coolamqp\uplink\connection\recv_framer.py -coolamqp\uplink\connection\send_framer.py -coolamqp\uplink\connection\states.py -coolamqp\uplink\connection\watches.py -coolamqp\uplink\listener\__init__.py -coolamqp\uplink\listener\epoll_listener.py -coolamqp\uplink\listener\socket.py -coolamqp\uplink\listener\thread.py diff --git a/docs/conf.py b/docs/conf.py index 5fbe0c4b997c43ea1f72fa5171e2d74cb683ff44..5333e6afda313a75badcac420a58458d8bf32424 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -156,6 +156,10 @@ texinfo_documents = [ from coolamqp.framing.definitions import BINARY_HEADER_TO_METHOD with open('frames.rst', 'w') as f_out: + f_out.write('''=========================== +Glossary of all AMQP frames +=========================== +''') for class_ in BINARY_HEADER_TO_METHOD.values(): f_out.write('.. autoclass:: coolamqp.framing.definitions.%s\n :members:\n\n' % ( class_.__qualname__,))