fog/setup.py

13 lines
306 B
Python
Raw Normal View History

2018-04-26 15:40:12 +00:00
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)