Skip to content

Commit

Permalink
Fixed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zafercavdar committed Jan 9, 2023
1 parent 436b81f commit 7734223
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
publish:
python3 setup.py sdist && twine upload dist/*
python3 setup.py sdist
twine upload dist/*

test:
pytest
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
from setuptools import find_packages

setup(name='fasttext-langdetect',
version='1.0.4',
version='1.0.5',
description='80x faster and 95% accurate language identification with Fasttext',
keywords=['fasttext', 'langdetect', 'language detection',
'language identification'],
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
url='https://github.com/zafercavdar/fasttext-langdetect.git',
download_url='https://github.com/zafercavdar/fasttext-langdetect/archive/refs/tags/v1.0.4.tar.gz',
download_url='https://github.com/zafercavdar/fasttext-langdetect/archive/refs/tags/v1.0.5.tar.gz',
author='Zafer Cavdar',
author_email='[email protected]',
install_requires=[
req.strip()
for req in open("requirements.txt", "r").readlines()
"fasttext>=0.9.1",
"requests>=2.22.0",
],
license='MIT',
packages=find_packages(),
Expand Down

0 comments on commit 7734223

Please sign in to comment.