|
1 | 1 | [tool.poetry]
|
2 | 2 | name = "new-dale-chall-readability"
|
3 |
| -version = "1.0.12" |
| 3 | +version = "1.0.13" |
4 | 4 | description = "Implements the New Dale-Chall readability formula. Its output is tested against samples from the original publication."
|
5 | 5 | authors = ["Robb Shecter <robb@public.law>"]
|
6 | 6 | license = "MIT"
|
7 |
| -homepage = "https://github.com/public-law/new-dale-chall-readability" |
8 |
| -repository = "https://github.com/public-law/new-dale-chall-readability" |
| 7 | +homepage = "https://github.com/public-law/readability" |
| 8 | +repository = "https://github.com/public-law/readability" |
9 | 9 | keywords = ["nlp", "readability", "dale-chall"]
|
10 | 10 | classifiers = [
|
11 |
| - "Development Status :: 5 - Production/Stable", |
12 |
| - "Intended Audience :: Developers", |
13 |
| - "License :: OSI Approved :: MIT License", |
14 |
| - "Natural Language :: English", |
15 |
| - "Operating System :: OS Independent", |
16 |
| - "Programming Language :: Python :: 3", |
17 |
| - "Programming Language :: Python :: 3.10", |
18 |
| - "Topic :: Text Processing :: Linguistic", |
19 |
| - "Typing :: Typed"] |
| 11 | + "Development Status :: 5 - Production/Stable", |
| 12 | + "Intended Audience :: Developers", |
| 13 | + "License :: OSI Approved :: MIT License", |
| 14 | + "Natural Language :: English", |
| 15 | + "Operating System :: OS Independent", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3.10", |
| 18 | + "Topic :: Text Processing :: Linguistic", |
| 19 | + "Typing :: Typed", |
| 20 | +] |
20 | 21 | readme = "README.md"
|
21 | 22 |
|
22 | 23 |
|
@@ -56,7 +57,7 @@ reportUnusedImport = "warning"
|
56 | 57 | [tool.pytest.ini_options]
|
57 | 58 | minversion = "7.1"
|
58 | 59 | pythonpath = "."
|
59 |
| -python_files = ["*_test.py",] |
| 60 | +python_files = ["*_test.py"] |
60 | 61 | python_classes = ["Test", "Describe"]
|
61 | 62 | python_functions = ["test_", "it_", "and_", "but_", "they_"]
|
62 | 63 | addopts = "-q --no-header --doctest-modules"
|
|
0 commit comments