-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
executable file
·84 lines (76 loc) · 2.87 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/python
# -*- coding:utf-8 -*-
#
# Copyright (C) 2007-2010 Libresoft Research Group
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc.m 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# Authors : Israel Herraiz <[email protected]>
# Authors : Germán Poo-Caamaño <[email protected]>
"""
Installer
@author: Israel Herraiz
@organization: Libresoft Research Group, Universidad Rey Juan Carlos
@copyright: Universidad Rey Juan Carlos (Madrid, Spain)
@license: GNU GPL version 2 or any later version
@contact: [email protected]
"""
import sys
from setuptools import setup
from pymlstats.version import mlstats_version
# Dirty trick to allow installing the man page, making setuptools behave
# like distutils. Uncomment the following if you would like that behavior.
# sys.argv += ['--single-version-externally-managed', '--record=mlstats.txt']
extra = {}
# Not exactly Python3-ready...
if sys.version_info >= (3,):
extra['use_2to3'] = True
README = open('README.md').read()
setup(
name='mlstats',
version=mlstats_version,
author='Libresoft Research Group',
author_email='[email protected]',
description='A tool to retrieve and analyze mailing lists discussions, '
'part of the Metrics Grimoire suite.',
long_description=README,
license='GNU GPL 2 or any later version',
url='http://metricsgrimoire.github.io/MailingListStats/',
platforms = ['any'],
packages = ['pymlstats', 'pymlstats.db'],
scripts = ['mlstats'],
install_requires = ['SQLAlchemy >= 0.7'],
data_files = [('share/man/man1',['man/mlstats.1'])],
test_suite = 'pymlstats.tests',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 or later '
'(GPLv2+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Communications :: Email',
'Topic :: Internet :: Log Analysis',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
extras_require = {
'mysql': ['MySQL-python'],
'postgres': ['psycopg2']
},
**extra
)