Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 87139f2

Browse files
author
Eric Naeseth
committed
Adding a setup.py script.
1 parent 280309d commit 87139f2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# encoding: utf-8
2+
3+
from distutils.core import setup
4+
5+
setup(
6+
name='Python FP-Growth',
7+
description='A pure-python implementation of the FP-growth algorithm.'
8+
version='0.1',
9+
author='Eric Naeseth',
10+
author_email='[email protected]',
11+
url='http://github.com/enaeseth/python-fp-growth/',
12+
13+
py_modules=['fp_growth']
14+
)

0 commit comments

Comments
 (0)