-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for pip Signed-off-by: Matthias Tafelmeier <[email protected]>
- Loading branch information
Showing
20 changed files
with
65 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,11 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
setup.cfg | ||
setup.py | ||
./fleutan/fleutan | ||
fleutan/__init__.py | ||
fleutan/depictor.py | ||
fleutan/fleutan.py | ||
fleutan/flow_interceptor.py | ||
fleutan/interrogator.py | ||
fleutan/utils/__init__.py | ||
fleutan/utils/util.py |
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,12 @@ | ||
Metadata-Version: 1.1 | ||
Name: Fleutan | ||
Version: 0.5 | ||
Summary: Fleutan - a scalable network flows and paths wielding lever | ||
Home-page: https://github.com/cherusk/fleutan | ||
Author: Matthias Tafelmeier | ||
Author-email: [email protected] | ||
License: GPL-3.0 | ||
Download-URL: https://github.com/cherusk/fleutan/dist/0.5.tar.gz | ||
Description: UNKNOWN | ||
Keywords: linux,tool,transport,sockets,flow,stats,analytics | ||
Platform: UNKNOWN |
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,10 @@ | ||
setup.cfg | ||
setup.py | ||
./fleutan/fleutan | ||
fleutan/Fleutan.egg-info/PKG-INFO | ||
fleutan/Fleutan.egg-info/SOURCES.txt | ||
fleutan/Fleutan.egg-info/dependency_links.txt | ||
fleutan/Fleutan.egg-info/requires.txt | ||
fleutan/Fleutan.egg-info/top_level.txt | ||
fleutan/utils/__init__.py | ||
fleutan/utils/util.py |
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 @@ | ||
|
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,8 @@ | ||
tabulate | ||
futures | ||
ascii_graph | ||
numpy | ||
psutil | ||
multiprocessing | ||
backports.functools_lru_cache | ||
termcolor |
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 @@ | ||
fleutan |
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 @@ | ||
from .fleutan import run |
File renamed without changes.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
#!/usr/bin/python | ||
|
||
# fleutan | ||
#Copyright (C) 2017 Matthias Tafelmeier | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
|
File renamed without changes.
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,2 @@ | ||
[metadata] | ||
description-file = README.md |
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,17 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name='Fleutan', | ||
packages=['fleutan', 'fleutan.utils'], | ||
license="GPL-3.0", | ||
version='0.6', | ||
description="Fleutan - a scalable network flows and paths wielding lever", | ||
author='Matthias Tafelmeier', | ||
author_email='[email protected]', | ||
scripts=['./fleutan/fleutan'], | ||
url='https://github.com/cherusk/fleutan', | ||
download_url='https://github.com/cherusk/fleutan/dist/0.6.tar.gz', | ||
install_requires=['tabulate', 'futures', 'ascii_graph', 'numpy', 'psutil', 'multiprocessing', 'backports.functools_lru_cache', 'termcolor' ], | ||
keywords=['linux', 'tool', 'transport', 'sockets', 'flow', 'stats', 'analytics'], | ||
classifiers=[], | ||
) |