-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "remayn"
version = "1.0.8"
authors = [
{name = "Víctor Manuel Vargas", email = "vvargas@uco.es"},
]
description = "REsults MAde easY in pythoN"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy",
"pandas",
"openpyxl",
]
[project.urls]
Source = "https://github.com/ayrna/remayn"
Documentation = "https://remayn.readthedocs.io/en/latest/"
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "pre-commit"]
docs = ["sphinx", "sphinxcontrib-bibtex", "sphinx-rtd-theme"]
tutorials = ["scikit-learn"]
[tool.setuptools.packages.find]
include = ["remayn", "remayn.*"]
exclude = ["*.tests"]
namespaces = false
[tool.ruff]
fix = true
line-length = 88
[tool.black]
line-length = 88
target-version = ['py311']