Skip to content

Commit c0f2e48

Browse files
author
Leo
committed
fix release distribution
1 parent 2139735 commit c0f2e48

14 files changed

+663
-28
lines changed

MANIFEST

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# file GENERATED by distutils, do NOT edit
2+
README.txt
23
setup.py
4+
src/data/test_data_dict.pckl
5+
src/pyupset/__init__.py
6+
src/pyupset/visualisation.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
--index-url https://pypi.python.org/pypi/pyupset
2+
13
matplotlib == 1.4.3
24
pandas == 0.16.2
35
numpy == 1.9.2

dist/PyUpSet-0.1.1.post5.tar.gz

51 KB
Binary file not shown.

pyupset/PyUpSet.egg-info/PKG-INFO

-14
This file was deleted.

pyupset/PyUpSet.egg-info/SOURCES.txt

-6
This file was deleted.

pyupset/PyUpSet.egg-info/dependency_links.txt

-1
This file was deleted.

pyupset/PyUpSet.egg-info/requires.txt

-3
This file was deleted.

pyupset/PyUpSet.egg-info/top_level.txt

-1
This file was deleted.
-1.09 KB
Binary file not shown.

pyupset/setup.py setup.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = '[email protected]'
2-
from setuptools import setup, find_packages
2+
from distutils.core import setup
33
# To use a consistent encoding
44
from codecs import open
55
from os import path
@@ -8,7 +8,7 @@
88

99

1010
setup(name='PyUpSet',
11-
version='0.1.1.post1',
11+
version='0.1.1.post5',
1212
description='Python implementation of the UpSet visualisation suite by Lex et al.',
1313
author = 'Leonardo Baldassini',
1414
author_email= '[email protected]',
@@ -20,4 +20,6 @@
2020
'Topic :: Scientific/Engineering :: Visualization',
2121
'Programming Language :: Python :: 3'],
2222
install_requires=['pandas', 'matplotlib', 'numpy'],
23-
package_data={'test_data_dictionary':['test_data_dict.pckl']})
23+
packages=['pyupset'],
24+
package_dir={'pyupset':'src/pyupset'},
25+
package_data={'pyupset':['src/data/test_data_dict.pckl']})
File renamed without changes.

src/pyupset/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
__author__ = '[email protected]'
2+
from .visualisation import plot

0 commit comments

Comments
 (0)