File: setup.py

package info (click to toggle)
py-asterisk 0.5.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 140 kB
  • ctags: 201
  • sloc: python: 1,238; sh: 10; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

'''
py-Asterisk distutils script.
'''

__author__ = 'David Wilson'
__id__ = '$Id$'

from distutils.core import setup


setup(
    name =          'py-Asterisk',
    version =       '0.5.3',
    description =   'Asterisk Manager API Python interface.',
    author =        'David Wilson',
    author_email =  'dw@botanicus.net',
    license =       'MIT',
    url =           'http://code.google.com/p/py-asterisk/',
    packages =      [ 'Asterisk' ],
    scripts =       [ 'asterisk-dump', 'py-asterisk' ]
)