From 81e4ae391851c8b6c6442e79860c0a0962203263 Mon Sep 17 00:00:00 2001 From: Yomguithereal Date: Fri, 27 Apr 2018 14:09:49 +0200 Subject: [PATCH] Correct setup.py? --- .gitignore | 3 +++ setup.py | 14 ++++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index db08f0d..cfb690d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ __pycache__ .DS_Store .pytest_cache *.pyx + +build +dist diff --git a/setup.py b/setup.py index b6c1ced..f139319 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,18 @@ -from setuptools import setup +from setuptools import setup, find_packages + +with open('./README.md', 'r') as f: + long_description = f.read() setup(name='fog', version='0.0.1', description='A fuzzy matching & clustering library for python.', + long_description=long_description, + long_description_content_type='text/markdown', url='http://github.com/Yomguithereal/fog', license='MIT', author='Guillaume Plique', - packages=[ - 'fog' - ], + keywords='fuzzy', + python_requires='>=3', + packages=find_packages(exclude=['test']), + package_data={'docs': ['README.md']}, zip_safe=True)