-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·32 lines (28 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from distutils.core import setup
setup(
name='aster-accounting',
version='0.0.2',
packages=['pyrad-2.0.pyrad', 'pyrad-2.0.pyrad.tests', 'pyst-0.6.50.build.lib.linux-i686-2.7.asterisk',
'pyst-0.6.50.asterisk'],
packages=['aster-accounting', 'aster-accounting.pyrad.pyrad', 'aster-accounting.pyrad.pyrad.tests'],
url='lanbilling.ru',
license='GPL',
author='Andrew Tkachenko',
author_email='[email protected]',
description='Radius accounting client for Asterisk PBX',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Communications :: Email',
'Topic :: Office/Business',
'Topic :: Software Development :: Bug Tracking', ],
name='Asterisk Accouting',
version='0.0.1',
install_requires=['pyrad'],
)