-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 679 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='arulesviz',
use_scm_version=True,
description='Association Rules visualisation tool',
version='0.0.1',
url='https://github.com/zveryansky/python-arulesviz',
author='Alex Zverianskii',
author_email='',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
keywords='association rules graph bqplot arules arulesviz apriori lift slift',
packages=find_packages(exclude=['examples', 'data']),
install_requires=['ipywidgets', 'bqplot', 'efficient-apriori'],
)