summaryrefslogtreecommitdiff
path: root/setup.py
blob: 5e272392b008f4ce4d95f6b7e9ea8101c3457938 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python

from distutils.core import setup

from attoconf.version import version_string

setup(
    name='attoconf',
    version=version_string,
    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',
    ],
    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',
    ],
)