blob: 09c35c9b6c129784c1146e45e21fec1efb8dc2e6 (
plain) (
tree)
|
|
#!/usr/bin/env python2
from distutils.core import setup
from attoconf.version import part_version
setup(
name='attoconf',
version=part_version,
description='A small and sensible replacement for GNU autoconf',
author='Ben Longbons',
author_email='b.r.longbons@gmail.com',
url='http://github.com/o11c/attoconf',
packages=[
'attoconf',
'attoconf.lib',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development :: Build Tools',
],
)
|