summaryrefslogtreecommitdiff
path: root/setup.py
blob: 2357bcee343980cec160b508b88f5fb8abf78bd5 (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
25
#!/usr/bin/env python

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',
    ],
)