-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cat2cat"
authors = [
{name = "Maciej Nasinski", email = "[email protected]"},
]
description = "Unifying an inconsistently coded categorical variable in a panel/longtitudal dataset."
readme = "README.md"
version = "0.1.6"
requires-python = ">=3.8"
keywords = ["panel", "categorical", "longtitudal", "inconsistent", "cat2cat"]
license = {text = "Apache License 2.0 | file LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"importlib-resources"
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "mypy"]
docs = [
"Sphinx",
"myst-parser",
"sphinx-autoapi",
"sphinx-rtd-theme"
]
build = ["build"]
benchmark = ["snakeviz"]
styler = ["flake8", "black"]
all = ["cat2cat[test,docs,build,benchmark,styler]"]
[project.urls]
homepage = "https://github.com/Polkas/py-cat2cat"
documentation = "https://py-cat2cat.readthedocs.io/en/latest/"
repository = "https://github.com/Polkas/py-cat2cat"
changelog = "https://raw.githubusercontent.com/Polkas/py-cat2cat/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"cat2cat.data" = ["*"]
[tool.mypy]
python_version = "3.8"
disallow_untyped_defs = true
ignore_missing_imports = true