@@ -11,31 +11,36 @@ license = {text = "MIT"}
1111authors = [{name = " Łukasz Bielaszewski" , email = " lukaszbielaszewskibiz@gmail.com" }]
1212requires-python = " >=3.9"
1313dependencies = [
14- " numpy>=1.20.0" ,
14+ " numpy>=1.21.0" ,
15+ " pyyaml>=6.0" ,
1516]
1617classifiers = [
17- " Development Status :: Delta" ,
18- " Intended Audience :: Developers, New Users into Machine Learning" ,
18+ " Development Status :: 4 - Beta" ,
19+ " Intended Audience :: Developers" ,
20+ " Intended Audience :: Science/Research" ,
1921 " License :: OSI Approved :: MIT License" ,
2022 " Programming Language :: Python :: 3" ,
2123 " Programming Language :: Python :: 3.9" ,
2224 " Programming Language :: Python :: 3.10" ,
2325 " Programming Language :: Python :: 3.11" ,
26+ " Programming Language :: Python :: 3.12" ,
2427]
2528
2629[project .optional-dependencies ]
2730dev = [
28- " pytest>=6.0.0" ,
29- " pytest-cov>=2.12.0" ,
30- " flake8>=3.9.0" ,
31- " black>=21.5b2" ,
31+ " pytest>=7.0.0" ,
32+ " pytest-cov>=4.0.0" ,
33+ " black>=23.0.0" ,
34+ " isort>=5.12.0" ,
35+ " flake8>=6.0.0" ,
36+ " mypy>=1.0.0" ,
3237]
3338examples = [
34- " matplotlib>=3.4 .0" ,
39+ " matplotlib>=3.5 .0" ,
3540 " jupyter>=1.0.0" ,
3641 " notebook>=6.4.0" ,
37- " scikit-learn>=0.24 .0" ,
38- " pandas>=1.2 .0" ,
42+ " scikit-learn>=1.1 .0" ,
43+ " pandas>=1.4 .0" ,
3944]
4045
4146[project .urls ]
@@ -46,12 +51,16 @@ Repository = "https://github.com/Klus3kk/fit"
4651include = [" fit*" ]
4752
4853[tool .black ]
49- line-length = 70
54+ line-length = 88
5055
5156[tool .isort ]
5257profile = " black"
5358
54- [tool .mypy ] # type checker
55- python_version = " 3.8 "
59+ [tool .mypy ]
60+ python_version = " 3.9 "
5661warn_return_any = true
57- disallow_untyped_defs = true
62+ disallow_untyped_defs = true
63+
64+ [tool .pytest .ini_options ]
65+ testpaths = [" tests" ]
66+ addopts = [" --cov=fit" ]
0 commit comments