From dfa2845d2aaa4198bb870df9e3a8a30f1676fd97 Mon Sep 17 00:00:00 2001 From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl> Date: Sun, 8 Oct 2017 05:55:50 +0200 Subject: [PATCH] find packages yourself --- setup.py | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index eb04a2d..29d31bc 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,10 @@ #!/usr/bin/env python # coding=UTF-8 -from setuptools import setup +from setuptools import setup, find_packages setup(keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], - packages=[ - 'coolamqp', - 'coolamqp.uplink', - 'coolamqp.uplink.connection', - 'coolamqp.uplink.listener', - 'coolamqp.clustering', - 'coolamqp.attaches', - 'coolamqp.framing', - 'coolamqp.framing.compilation', - ], + packages=find_packages(include=['coolamqp', 'coolamqp.*']), long_description=u'''Pure Python AMQP client, but with dynamic class generation and memoryviews FOR THE GODSPEED. Also, handles your reconnects and transactionality THE RIGHT WAY, though somewhat opinionated''', -- GitLab