Skip to content

Commit

Permalink
fleutan: python packaging
Browse files Browse the repository at this point in the history
for pip

Signed-off-by: Matthias Tafelmeier <[email protected]>
  • Loading branch information
cherusk committed Jul 16, 2017
1 parent cbda147 commit 976770f
Show file tree
Hide file tree
Showing 20 changed files with 65 additions and 1 deletion.
11 changes: 11 additions & 0 deletions MANIFEST
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 removed __init__.py
Empty file.
Binary file added dist/Fleutan-0.4.tar.gz
Binary file not shown.
Binary file added dist/Fleutan-0.5.tar.gz
Binary file not shown.
Binary file added dist/Fleutan-0.6.tar.gz
Binary file not shown.
12 changes: 12 additions & 0 deletions fleutan/Fleutan.egg-info/PKG-INFO
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
10 changes: 10 additions & 0 deletions fleutan/Fleutan.egg-info/SOURCES.txt
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
1 change: 1 addition & 0 deletions fleutan/Fleutan.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

8 changes: 8 additions & 0 deletions fleutan/Fleutan.egg-info/requires.txt
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
1 change: 1 addition & 0 deletions fleutan/Fleutan.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fleutan
1 change: 1 addition & 0 deletions fleutan/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .fleutan import run
File renamed without changes.
2 changes: 1 addition & 1 deletion fleutan → fleutan/fleutan
100644 → 100755
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
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions fleutan/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
17 changes: 17 additions & 0 deletions setup.py
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=[],
)

0 comments on commit 976770f

Please sign in to comment.