-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.76 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
61
62
63
64
65
66
67
68
69
70
71
# https://github.com/danielfrg/mkdocs-jupyter/blob/12b64c5ce9329ef69c18f005d46f9839a18c515c/pyproject.toml
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools >= 43.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "FuzzyMath"
readme = "README.md"
version = "0.6.1"
description = "Small lightweight library for Python that performs basic Interval and Fuzzy Arithmetic."
requires-python = ">=3.8"
license = { "file" = "LICENSE" }
authors = [{ "name" = "Jan Caha", "email" = "jan.caha@outlook.com" }]
keywords = ["fuzzy", "fuzzy arithmetic", "fuzzy math"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
]
urls = { "Documentation" = "https://jancaha.github.io/FuzzyMath" }
dependencies = ["numpy"]
[options.extras_require]
test = [
"pytest",
"pytest-cov"
]
[options]
include_package_data = true
[options.package_data]
FuzzyMath = ["src/FuzzyMath/py.typed"]
[flake8]
exclude = [
".git",
"__pycache__",
"tests/*"
]
max-line-length = 160
[tool.pytest.ini_options]
addopts = "-v -s --cov=FuzzyMath --cov-report=term-missing:skip-covered"
testpaths = [
"tests"
]
pythonpath = ["src"]
[tool.black]
line-length = 120
[tool.isort]
atomic = true
profile = "black"
line_length = 120
skip_gitignore = true
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = ""