~soren/surveilr/client

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Soren Hansen
  • Date: 2011-11-15 23:03:15 UTC
  • Revision ID: soren@linux2go.dk-20111115230315-o1v10oacbzyod8hg
Add setup.py to get the ball rolling.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
#
 
3
#    Surveilr - Log aggregation, analysis and visualisation
 
4
#
 
5
#    Copyright (C) 2011  Linux2Go
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as published by
 
9
#    the Free Software Foundation, either version 3 of the License, or
 
10
#    (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
from setuptools import setup
 
21
 
 
22
setup(
 
23
    name='surveilr',
 
24
    version='0.1a1',
 
25
    description='Monitoring System evolved',
 
26
    author='Soren Hansen',
 
27
    license='AGPL',
 
28
    author_email='soren@linux2go.dk',
 
29
    url='http://surveilr.org/',
 
30
    packages=['surveilr'],
 
31
    install_requires=['riakalchemy'],
 
32
    test_suite = 'nose.collector',
 
33
    classifiers = [
 
34
        'Development Status :: 2 - Pre-Alpha',
 
35
        'Environment :: Console',
 
36
        'Environment :: No Input/Output (Daemon)',
 
37
        'Intended Audience :: Information Technology',
 
38
        'Intended Audience :: System Administrators',
 
39
        'License :: OSI Approved :: GNU Affero General Public License v3',
 
40
        'GNU Library or Lesser General Public License (LGPL)',
 
41
        'Operating System :: POSIX :: Linux',
 
42
        'Programming Language :: Python',
 
43
        'Topic :: Internet :: Log Analysis',
 
44
        'Topic :: System :: Monitoring',
 
45
        'Topic :: System :: Networking :: Monitoring',
 
46
    ]
 
47
)
 
48