-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added setup.py and some text files like COPYING etc.
Also removed symlink from examples/umpa git-svn-id: http://svn.umitproject.org/svnroot/umit/branch/UMPA@3541 1105ee14-b0fa-0310-85a5-ff3eed429ff7
- Loading branch information
Showing
6 changed files
with
504 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Bartosz SKOWRON <getxsick at gmail dot com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include README AUTHORS COPYING | ||
|
||
recursive-include examples *.py |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright (C) 2008 Adriano Monteiro Marques. | ||
# | ||
# Author: Bartosz SKOWRON <getxsick at gmail dot com> | ||
# | ||
# This library is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU Lesser General Public License as published | ||
# by the Free Software Foundation; either version 2.1 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This library 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 Lesser General Public | ||
# License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with this library; if not, write to the Free Software Foundation, | ||
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
|
||
import glob | ||
import os.path | ||
from distutils.core import setup | ||
|
||
UMPA_VERSION = '0.1' | ||
|
||
setup( name = "UMPA", | ||
version = UMPA_VERSION, | ||
description = "Umit Manipulation of Packets Art", | ||
author = "Bartosz SKOWRON", | ||
author_email = "[email protected]", | ||
url = "http://trac.umitproject.org/wiki/PacketManipulator/BackEnd", | ||
license = "GNU LGPLv2", | ||
platforms = ["Platform Independent"], | ||
packages = [ "umpa", | ||
"umpa.protocols", | ||
"umpa.extensions", | ||
"umpa.utils", | ||
], | ||
data_files = [ (os.path.join('share','umpa','examples'), glob.glob("examples/*"), )] | ||
) |