-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
436b81f
commit 7734223
Showing
2 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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(), | ||
|