-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
60 lines (56 loc) · 1.43 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pca"
dynamic = ["version"]
authors = [{ name = "Erdogan Taskesen", email = "erdogant@gmail.com" },]
description = "pca: A Python Package for Principal Component Analysis."
readme = "README.md"
requires-python = ">=3"
license = "MIT"
keywords = [
"Python",
"PCA",
"principal component analysis",
"dimensionality reduction",
"outlier detection",
"biplot",
"explained variance",
"hotelling t2",
"3d plot",
"data visualization",
"feature extraction",
"eigenvalues",
"eigenvectors"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
'datazets',
'statsmodels',
'matplotlib',
'numpy',
'scikit-learn',
'scipy',
'colourmap>=1.1.19',
'pandas',
'scatterd>=1.3.7',
'adjusttext',
]
[project.urls]
Homepage = "https://erdogant.github.io/pca"
Download = "https://github.com/erdogant/pca/archive/{version}.tar.gz"
[tool.setuptools]
packages = ["pca"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "pca.__version__" }