-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
executable file
·72 lines (65 loc) · 1.71 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
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "multidim"
authors = [
{name = "Maciej Nasinski", email = "nasinski.maciej@gmail.com"},
{name = "Pawel Strawinski", email = "pstrawinski@wne.uw.edu.pl"}
]
description = "Multidimensional Analysis Lecture"
readme = "README.md"
version = "0.1.0.9000"
requires-python = ">=3.8"
keywords = ["multidimensional", "analysis", "teaching"]
license = {text = "Apache License 2.0 | file LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"stata_setup",
"numpy",
"pandas",
"scipy",
"scikit-learn",
"statsmodels",
"prince",
"factor-analyzer",
"matplotlib",
"seaborn",
"yellowbrick",
"jupyter",
"notebook",
"importlib-resources",
"importlib-metadata",
"pywin32; platform_system=='Windows'",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "mypy", "nbmake"]
docs = [
"Sphinx",
"myst-nb",
"sphinx-autoapi",
"sphinx-rtd-theme"
]
build = ["build"]
benchmark = ["snakeviz"]
styler = ["flake8", "black"]
debug = ["ipdb"]
all = ["multidim[test,docs,build,benchmark,styler,debug]"]
[project.urls]
homepage = "https://github.com/Polkas/multidim"
documentation = "https://multidim.readthedocs.io/en/latest/"
repository = "https://github.com/Polkas/multidim"
changelog = "https://raw.githubusercontent.com/Polkas/multidim/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"multidim.data" = ["*"]
"multidim.notebooks" = ["*"]
[project.scripts]
copy-aw-notes = "multidim:copy"
[tool.mypy]
python_version = "3.8"
disallow_untyped_defs = true
ignore_missing_imports = true