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
|
.DS_Store
|
||||||
.pytest_cache
|
.pytest_cache
|
||||||
*.pyx
|
*.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',
|
setup(name='fog',
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
description='A fuzzy matching & clustering library for python.',
|
description='A fuzzy matching & clustering library for python.',
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
url='http://github.com/Yomguithereal/fog',
|
url='http://github.com/Yomguithereal/fog',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
author='Guillaume Plique',
|
author='Guillaume Plique',
|
||||||
packages=[
|
keywords='fuzzy',
|
||||||
'fog'
|
python_requires='>=3',
|
||||||
],
|
packages=find_packages(exclude=['test']),
|
||||||
|
package_data={'docs': ['README.md']},
|
||||||
zip_safe=True)
|
zip_safe=True)
|
||||||
|
|
Loading…
Reference in New Issue