Skip to content

Commit

Permalink
Added setup.py and some text files like COPYING etc.
Browse files Browse the repository at this point in the history
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
bxsx committed Aug 18, 2008
1 parent 10138f8 commit cad678c
Show file tree
Hide file tree
Showing 6 changed files with 504 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bartosz SKOWRON <getxsick at gmail dot com>
458 changes: 458 additions & 0 deletions COPYING

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include README AUTHORS COPYING

recursive-include examples *.py
Empty file added README
Empty file.
1 change: 0 additions & 1 deletion examples/umpa

This file was deleted.

42 changes: 42 additions & 0 deletions setup.py
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/*"), )]
)

0 comments on commit cad678c

Please sign in to comment.