mirror of https://github.com/Yomguithereal/fog.git
13 lines
306 B
Python
13 lines
306 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(name='fog',
|
||
|
version='0.0.1',
|
||
|
description='A fuzzy matching & clustering library for python.',
|
||
|
url='http://github.com/Yomguithereal/fog',
|
||
|
license='MIT',
|
||
|
author='Guillaume Plique',
|
||
|
packages=[
|
||
|
'fog'
|
||
|
],
|
||
|
zip_safe=True)
|