Skip to content

Commit 204606a

Browse files
committed
initial commit
0 parents  commit 204606a

18 files changed

+1880
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pyc

.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>netium</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.python.pydev.PyDevBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.python.pydev.pythonNature</nature>
16+
</natures>
17+
</projectDescription>

.pydevproject

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<?eclipse-pydev version="1.0"?><pydev_project>
3+
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
4+
<path>/${PROJECT_DIR_NAME}/src</path>
5+
</pydev_pathproperty>
6+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.6</pydev_property>
7+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
8+
</pydev_project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=utf-8

setup.py

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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+
)

src/netium/__init__.py

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
4+
# Hive Netium System
5+
# Copyright (C) 2008-2012 Hive Solutions Lda.
6+
#
7+
# This file is part of Hive Netium System.
8+
#
9+
# Hive Netium 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 Netium 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 Netium System. If not, see <http://www.gnu.org/licenses/>.
21+
22+
__version__ = "1.0.0"
23+
""" The version of the module """
24+
25+
__revision__ = "$LastChangedRevision$"
26+
""" The revision number of the module """
27+
28+
__date__ = "$LastChangedDate$"
29+
""" The last change date of the module """
30+
31+
__copyright__ = "Copyright (c) 2008-2012 Hive Solutions Lda."
32+
""" The copyright for the module """
33+
34+
__license__ = "GNU General Public License (GPL), Version 3"
35+
""" The license for the module """
36+
37+
import base
38+
39+
from base import *

src/netium/base/__init__.py

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
4+
# Hive Netium System
5+
# Copyright (C) 2008-2012 Hive Solutions Lda.
6+
#
7+
# This file is part of Hive Netium System.
8+
#
9+
# Hive Netium 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 Netium 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 Netium System. If not, see <http://www.gnu.org/licenses/>.
21+
22+
__version__ = "1.0.0"
23+
""" The version of the module """
24+
25+
__revision__ = "$LastChangedRevision$"
26+
""" The revision number of the module """
27+
28+
__date__ = "$LastChangedDate$"
29+
""" The last change date of the module """
30+
31+
__copyright__ = "Copyright (c) 2008-2012 Hive Solutions Lda."
32+
""" The copyright for the module """
33+
34+
__license__ = "GNU General Public License (GPL), Version 3"
35+
""" The license for the module """
36+
37+
import client
38+
import common
39+
import conn
40+
import observer
41+
import server
42+
43+
from client import *
44+
from common import *
45+
from conn import *
46+
from observer import *
47+
from server import *

0 commit comments

Comments
 (0)