-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.04 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pca"
dynamic = ["version"]
authors = [{ name = "Erdogan Taskesen", email = "[email protected]" },]
description = "pca: A Python Package for Principal Component Analysis."
readme = "README.md"
requires-python = ">=3"
license = { file = "LICENSE" }
keywords = ["Python", "pca", "outliers", "biplot", "explained-variance", "hotelling-t2", "3d-plot"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
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__" }