Correct setup.py?

This commit is contained in:
Yomguithereal 2018-04-27 14:09:49 +02:00
parent 3bfed0edfc
commit 81e4ae3918
2 changed files with 13 additions and 4 deletions

3
.gitignore vendored
View File

@ -2,3 +2,6 @@ __pycache__
.DS_Store
.pytest_cache
*.pyx
build
dist

View File

@ -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)