Skip to content

Commit d897c4e

Browse files
committed
Update setup.py
1 parent a258c19 commit d897c4e

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

setup.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
from setuptools import find_packages, setup, Extension
66
from setuptools.command.build_ext import build_ext
77

8+
this_directory = os.path.abspath(os.path.dirname(__file__))
9+
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
10+
long_description = f.read()
811

912
class cython_build_ext(build_ext):
1013
user_options = build_ext.user_options + [
@@ -83,15 +86,21 @@ def run(self):
8386
"Topic :: Text Processing :: Linguistic",
8487
],
8588
cmdclass={'build_ext': cython_build_ext},
86-
description="Interface to finalfusion embeddings",
89+
description="Finalfusion in Python",
8790
ext_modules=extensions,
8891
install_requires=install_requires,
92+
keywords='embeddings word2vec finalfusion finalfrontier fasttext glove',
8993
license='BlueOak-1.0.0',
94+
long_description=long_description,
95+
long_description_content_type='text/markdown',
9096
packages=find_packages('src'),
9197
include_package_data=True,
9298
package_dir={'': 'src'},
9399
package_data={'finalfusion': ['py.typed', '*.pyi', '*.h', '*.c']},
94-
url="https://github.com/finalfusion/ffp",
100+
url="https://github.com/finalfusion/finalfusion-python",
101+
project_urls={
102+
"Finalfusion": "https://finalfusion.github.io",
103+
},
95104
entry_points=dict(console_scripts=['ffp-convert=finalfusion.scripts.convert:main']),
96105
version="0.7.0-pre"
97106
)

0 commit comments

Comments
 (0)