|
| 1 | +#!/usr/bin/python |
| 2 | +# -*- coding: utf-8 -*- |
| 3 | + |
| 4 | +# Hive Pingu System |
| 5 | +# Copyright (C) 2008-2012 Hive Solutions Lda. |
| 6 | +# |
| 7 | +# This file is part of Hive Pingu System. |
| 8 | +# |
| 9 | +# Hive Pingu System is free software: you can redistribute it and/or modify |
| 10 | +# it under the terms of the GNU General Public License as published by |
| 11 | +# the Free Software Foundation, either version 3 of the License, or |
| 12 | +# (at your option) any later version. |
| 13 | +# |
| 14 | +# Hive Pingu System is distributed in the hope that it will be useful, |
| 15 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | +# GNU General Public License for more details. |
| 18 | +# |
| 19 | +# You should have received a copy of the GNU General Public License |
| 20 | +# along with Hive Pingu System. If not, see <http://www.gnu.org/licenses/>. |
| 21 | + |
| 22 | +__author__ = "João Magalhães <[email protected]>" |
| 23 | +""" The author(s) of the module """ |
| 24 | + |
| 25 | +__version__ = "1.0.0" |
| 26 | +""" The version of the module """ |
| 27 | + |
| 28 | +__revision__ = "$LastChangedRevision$" |
| 29 | +""" The revision number of the module """ |
| 30 | + |
| 31 | +__date__ = "$LastChangedDate$" |
| 32 | +""" The last change date of the module """ |
| 33 | + |
| 34 | +__copyright__ = "Copyright (c) 2008-2012 Hive Solutions Lda." |
| 35 | +""" The copyright for the module """ |
| 36 | + |
| 37 | +__license__ = "GNU General Public License (GPL), Version 3" |
| 38 | +""" The license for the module """ |
| 39 | + |
| 40 | +import os |
| 41 | +import glob |
| 42 | +import setuptools |
| 43 | + |
| 44 | +setuptools.setup( |
| 45 | + name = "netium", |
| 46 | + version = "0.1.0", |
| 47 | + author = "Hive Solutions Lda.", |
| 48 | + author_email = "[email protected]", |
| 49 | + description = "Netium System", |
| 50 | + license = "GNU General Public License (GPL), Version 3", |
| 51 | + keywords = "netium net infrastructure", |
| 52 | + url = "http://netium.com", |
| 53 | + packages = [ |
| 54 | + "netium" |
| 55 | + ], |
| 56 | + classifiers = [ |
| 57 | + "Development Status :: 3 - Alpha", |
| 58 | + "Topic :: Utilities", |
| 59 | + "License :: OSI Approved :: GNU General Public License (GPL)", |
| 60 | + "Operating System :: OS Independent", |
| 61 | + "Programming Language :: Python", |
| 62 | + "Programming Language :: Python :: 2.6", |
| 63 | + "Programming Language :: Python :: 2.7" |
| 64 | + ] |
| 65 | +) |
0 commit comments