Skip to content

Commit

Permalink
fix release distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Nov 8, 2015
1 parent 2139735 commit c0f2e48
Show file tree
Hide file tree
Showing 14 changed files with 663 additions and 28 deletions.
4 changes: 4 additions & 0 deletions MANIFEST
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
2 changes: 2 additions & 0 deletions pyupset/Requirements.txt → Requirements.txt
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 added dist/PyUpSet-0.1.1.post5.tar.gz
Binary file not shown.
14 changes: 0 additions & 14 deletions pyupset/PyUpSet.egg-info/PKG-INFO

This file was deleted.

6 changes: 0 additions & 6 deletions pyupset/PyUpSet.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion pyupset/PyUpSet.egg-info/dependency_links.txt

This file was deleted.

3 changes: 0 additions & 3 deletions pyupset/PyUpSet.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion pyupset/PyUpSet.egg-info/top_level.txt

This file was deleted.

Binary file removed pyupset/dist/PyUpSet-0.1.1.post1.tar.gz
Binary file not shown.
8 changes: 5 additions & 3 deletions pyupset/setup.py → setup.py
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
Expand All @@ -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]',
Expand All @@ -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.
2 changes: 2 additions & 0 deletions src/pyupset/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__author__ = '[email protected]'
from .visualisation import plot
Loading

0 comments on commit c0f2e48

Please sign in to comment.