-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.4 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scikit-na"
dynamic = ["version"]
description = "Missing Values Analysis for Data Science"
readme = "README.md"
requires-python = ">=3.8"
license.file = "LICENSE"
authors = [{ name = "Maksim Terpilovskii", email = "maximtrp@gmail.com" }]
keywords = ["data science", "data analytics", "statistics"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: General",
]
urls.homepage = "https://github.com/maximtrp/scikit-na"
urls.documentation = "https://scikit-na.readthedocs.io/"
dependencies = [
"numpy",
"statsmodels",
"seaborn",
"pandas",
"altair",
"matplotlib",
"ipywidgets",
]
[project.optional-dependencies]
test = ["pytest", "codecov", "coverage"]
[tool.setuptools.dynamic]
version = { attr = "scikit_na.__version__" }
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"