-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* prepare version 1.0.0 * make sure tests can be reproduced * fix mypy version * update readme * fix history * update included files
- Loading branch information
Showing
6 changed files
with
45 additions
and
19 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
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,17 +1,20 @@ | ||
#include AUTHORS.rst | ||
#include CONTRIBUTING.rst | ||
include CITATION.cff | ||
include HISTORY.rst | ||
include LICENSE | ||
include README.rst | ||
include README.md | ||
include licenses/ | ||
include simplemma/py.typed | ||
graft simplemma/data/ | ||
graft simplemma/strategies/ | ||
|
||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] | ||
include tests/__init__.py tests/test_*.py | ||
graft tests/data/ | ||
graft tests/strategies/ | ||
|
||
recursive-include conf.py Makefile make.bat *.jpg *.png *.gif | ||
# recursive-include docs *.rst | ||
graft licenses/ | ||
|
||
include training/*.py training/*.rst training/*.txt | ||
|
||
# recursive-include docs *.md | ||
# include requirements-*.txt |
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
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,6 +1,6 @@ | ||
black==24.4.1 | ||
black==24.4.2 | ||
flake8==7.0.0 | ||
mypy==1.10.0 | ||
pytest==8.1.1 | ||
pytest==8.2.1 | ||
pytest-cov==5.0.0 | ||
types-requests==2.31.0.20240406 | ||
types-requests==2.32.0.20240523 |
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,3 @@ | ||
#!/usr/bin/env python | ||
|
||
"""The setup script.""" | ||
|
||
import re | ||
|
@@ -30,7 +28,7 @@ def get_version(package): | |
author_email="[email protected]", | ||
python_requires=">=3.6", | ||
classifiers=[ # https://pypi.org/classifiers/ | ||
"Development Status :: 3 - Alpha", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Information Technology", | ||
|
@@ -80,6 +78,7 @@ def get_version(package): | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Topic :: Software Development :: Internationalization", | ||
"Topic :: Software Development :: Localization", | ||
|
@@ -105,8 +104,8 @@ def get_version(package): | |
packages=find_packages(include=["simplemma", "simplemma.*"]), | ||
project_urls={ | ||
"Source": "https://github.com/adbar/simplemma", | ||
"Docs": "https://adbar.github.io/simplemma", | ||
"Blog": "https://adrien.barbaresi.eu/blog/", # tag/simplemma | ||
"Docs": "https://adbar.github.io/simplemma/", | ||
# "Blog": "https://adrien.barbaresi.eu/blog/", # tag/simplemma | ||
}, | ||
setup_requires=setup_requirements, | ||
test_suite="tests", | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
__author__ = "Adrien Barbaresi, Juanjo Diaz and contributors" | ||
__email__ = "[email protected]" | ||
__license__ = "MIT" | ||
__version__ = "0.9.1" | ||
__version__ = "1.0.0" | ||
|
||
|
||
from .language_detector import LanguageDetector, in_target_language, langdetect | ||
|