forked from amandasaurus/apache-log-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.07 KB
/
setup.py
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
26
27
28
29
30
31
32
#! /usr/bin/env python
from setuptools import setup
exec(open("./apache_log_parser/_version.py").read())
setup(name="apache-log-parser",
version=__version__,
author="Rory McCann",
author_email="[email protected]",
packages=['apache_log_parser'],
install_requires = [
'user-agents',
],
license = 'GPLv3+',
description = "Parse lines from an apache log file",
test_suite='apache_log_parser.tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)