1from distutils.core import setup, Extension
2
3setup (
4        name = 'apache_conf_parser',
5        version = '1.0.1',
6        description = 'Parse and manipulate apache conf files.',
7        author = "Eric Snow",
8        author_email = "ericsnowcurrently@gmail.com",
9        url = "https://bitbucket.org/ericsnowcurrently/apache_conf_parser/overview",
10        py_modules = [
11                "apache_conf_parser",
12                "test_apache_conf_parser",
13                ],
14        )
15