-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Leo
committed
Nov 8, 2015
1 parent
2139735
commit c0f2e48
Showing
14 changed files
with
663 additions
and
28 deletions.
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 |
---|---|---|
@@ -1,2 +1,6 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
README.txt | ||
setup.py | ||
src/data/test_data_dict.pckl | ||
src/pyupset/__init__.py | ||
src/pyupset/visualisation.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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--index-url https://pypi.python.org/pypi/pyupset | ||
|
||
matplotlib == 1.4.3 | ||
pandas == 0.16.2 | ||
numpy == 1.9.2 |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
__author__ = '[email protected]' | ||
from setuptools import setup, find_packages | ||
from distutils.core import setup | ||
# To use a consistent encoding | ||
from codecs import open | ||
from os import path | ||
|
@@ -8,7 +8,7 @@ | |
|
||
|
||
setup(name='PyUpSet', | ||
version='0.1.1.post1', | ||
version='0.1.1.post5', | ||
description='Python implementation of the UpSet visualisation suite by Lex et al.', | ||
author = 'Leonardo Baldassini', | ||
author_email= '[email protected]', | ||
|
@@ -20,4 +20,6 @@ | |
'Topic :: Scientific/Engineering :: Visualization', | ||
'Programming Language :: Python :: 3'], | ||
install_requires=['pandas', 'matplotlib', 'numpy'], | ||
package_data={'test_data_dictionary':['test_data_dict.pckl']}) | ||
packages=['pyupset'], | ||
package_dir={'pyupset':'src/pyupset'}, | ||
package_data={'pyupset':['src/data/test_data_dict.pckl']}) |
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 @@ | ||
__author__ = '[email protected]' | ||
from .visualisation import plot |
Oops, something went wrong.