Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
*.pyc

MANIFEST
build
dist

# pydev settings
.settings
.pydevproject
.project
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include examples/*
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/usr/bin/env python

from os.path import join, dirname
from distutils.core import setup

packages = [
'pygephi'
]

setup(name='pygephi',
version="1.0",
description='Python scripts that can be used to stream data to gephi',
long_description=open(join(dirname(__file__), 'README'), 'r').read(),
author='Andre Panisson',
author_email='[email protected]',
license='Apache 2.0',
url='https://github.com/panisson/pygephi_graphstreaming',
packages=packages,
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization'
]
)