mirror of https://github.com/Yomguithereal/fog.git
Correct setup.py?
This commit is contained in:
parent
3bfed0edfc
commit
81e4ae3918
|
@ -2,3 +2,6 @@ __pycache__
|
|||
.DS_Store
|
||||
.pytest_cache
|
||||
*.pyx
|
||||
|
||||
build
|
||||
dist
|
||||
|
|
14
setup.py
14
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)
|
||||
|
|
Loading…
Reference in New Issue