diff --git a/setup.py b/setup.py index ffe8cc8..c99ea33 100644 --- a/setup.py +++ b/setup.py @@ -1,32 +1,32 @@ #!/usr/bin/python import re from distutils.core import setup def get_version(): return re.search(r"""__version__\s+=\s+(?P['"])(?P.+?)(?P=quote)""", open('callcontrol/__init__.py').read()).group('version') setup(name = "callcontrol", version = get_version(), author = "Dan Pascu", author_email = "dan@ag-projects.com", description = "SIP call control", license = "GPL", platforms = ["Platform Independent"], classifiers = [ #"Development Status :: 1 - Planning", #"Development Status :: 2 - Pre-Alpha", #"Development Status :: 3 - Alpha", #"Development Status :: 4 - Beta", "Development Status :: 5 - Production/Stable", #"Development Status :: 6 - Mature", #"Development Status :: 7 - Inactive", "Intended Audience :: Service Providers", "License :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python" ], - packages = ['callcontrol'], + packages = ['callcontrol','callcontrol.rating','callcontrol.rating.backends'], scripts = ['call-control'] )