-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (63 loc) · 1.4 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
[project]
name = "felimination"
description = "This library contains some useful scikit-learn compatible classes for feature selection."
version = "0.3.0"
keywords = ["feature selection", "scikit-learn", "machine learning"]
authors = [
{ name = "Claudio Salvatore Arcidiacono", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"scikit-learn>=1.4.0,<2.0.0",
"pandas>=1.1.1,<3.0.0",
"seaborn>=0.11.1,<1.0.0",
]
[project.optional-dependencies]
dev = [
"black",
"flake8-pyproject",
"flake8",
"pre-commit",
"pytest",
]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-jupyter",
]
build = [
"build",
"twine"
]
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project.urls]
"Homepage" = "https://github.com/ClaudioSalvatoreArcidiacono/felimination"
"Documentation" = "https://claudiosalvatorearcidiacono.github.io/felimination/"
"Bug Tracker" = "https://github.com/ClaudioSalvatoreArcidiacono/felimination/issues"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
max-line-length = 88