-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
25 lines (22 loc) · 905 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
__author__ = 'leo@opensignal.com'
from distutils.core import setup
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(name='PyUpSet',
version='0.1.1.post7',
description='Python implementation of the UpSet visualisation suite by Lex et al.',
author = 'Leonardo Baldassini',
author_email= 'leo@opensignal.com',
url='https://github.com/ImSoErgodic/py-upset',
license='MIT',
classifiers= [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 3'],
install_requires=['pandas', 'matplotlib', 'numpy'],
packages=['pyupset'],
package_dir={'pyupset':'src/pyupset'},
package_data={'pyupset':['src/data/test_data_dict.pckl']})