-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.67 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "normaldistrib"
description = "Generate symmetric and asymmetric normal distributions"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{name = "Pablo A. Kler", email = "[email protected]"},
{name = "Gabriel S. Gerlero", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development",
]
dependencies = [
"numpy>=1.25.0,<3; python_version>='3.11'",
"numpy>=1,<3",
"scipy>=1,<2",
]
dynamic = ["version"]
[project.optional-dependencies]
lint = ["ruff"]
dev = ["normaldistrib[lint]"]
[project.urls]
Homepage = "https://github.com/microfluidica/normaldistrib"
Repository = "https://github.com/microfluidica/normaldistrib"
[tool.setuptools]
py-modules = ["normaldistrib"]
[tool.setuptools.dynamic]
version = {attr = "normaldistrib.__version__"}
[tool.ruff.lint]
extend-select = ["ALL"]
extend-ignore = [
"ANN",
"COM812",
"D",
"ISC001",
"PLR0913",
]