-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 1 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
[tool.poetry]
name = "Factor-Analysis-Wrapper"
version = "0.1.0"
description = "Exploratory Factor Analysis in Python"
authors = ["Moritz Mistol <[email protected]>"]
license = "GNU GPL v2"
readme = "README.md"
homepage = "https://github.com/MoritzM00/FactorAnalysis"
repository = "https://github.com/MoritzM00/FactorAnalysis"
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.9',
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
numpy = "*"
scikit-learn = "1.0.2"
scipy = "1.7.3"
pandas = "*"
factor-analyzer = "*"
seaborn = "*"
matplotlib = "*"
[tool.poetry.dev-dependencies]
black = "*"
isort = "*"
pre-commit ="*"
pytest = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"