1 #=======================================================================
3 __version__
= '''0.1.12'''
4 __sub_version__
= '''20040823025217'''
5 __copyright__
= '''(c) Alex A. Naanou 2003'''
8 #-----------------------------------------------------------------------
10 PLI: a utility library for the Python language.
12 It defines a set of generic patters, aspects, utilities and tools. the
13 main target of this set of tools is to assist in rapid/concise
14 development (composition) of software.
17 #-----------------------------------------------------------------------
18 __classifiers__
= '''\
19 Development Status :: 2 - Pre-Alpha
20 Intended Audience :: Developers
21 License :: OSI Approved :: BSD License
22 Natural Language :: English
23 Programming Language :: Python
26 #-----------------------------------------------------------------------
27 from distutils
.core
import setup
31 __pkg_version__
= version
.__version
__
34 pkg_info
= './PKG-INFO'
36 if os
.path
.exists(pkg_info
):
37 f
= open(pkg_info
, 'r')
39 if l
.startswith(ver_str
):
40 __pkg_version__
= l
.split(ver_str
, 1)[-1].lstrip().rstrip()
43 __pkg_version__
= '0.0.00'
46 #-----------------------------------------------------------------------
49 version
= __pkg_version__
,
50 description
= __doc__
.split("\n", 1)[0],
51 long_description
= __doc__
,
52 author
= 'Alex A. Naanou',
53 author_email
= 'alex_nanou@users.sourceforge.net',
54 url
= 'http://pli.sourceforge.net/',
55 license
= 'BSD License',
57 classifiers
= filter(None, __classifiers__
.split("\n")),
59 ## package_dir = {'': 'pli'},
63 'pli.apps.xmlrpcserver',
76 ## 'pli.pattern.tree',
84 #=======================================================================
85 # vim:set ts=4 sw=4 nowrap :