-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.64 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
[tool.poetry]
name = "QuadratiK"
version = "1.2.dev0"
description = "QuadratiK includes test for multivariate normality, test for uniformity on the Sphere, non-parametric two- and k-sample tests, random generation of points from the Poisson kernel-based density and clustering algorithm for spherical data."
license = "GPL-3.0-only"
authors = [
"Giovanni Saraceno, Marianthi Markatou, Raktim Mukhopadhyay, Mojgan Golzy <gsaracen@buffalo.edu, markatou@buffalo.edu, raktimmu@buffalo.edu, golzym@health.missouri.edu>",
]
maintainers = ["Raktim Mukhopadhyay <raktimmu@buffalo.edu>"]
readme = "README.rst"
packages = [
{ include = "QuadratiK" },
{ include = "tests" },
{ include = "doc" },
]
include = [{ path = "QuadratiK/ui/.streamlit", format = ["sdist", "wheel"] }]
[tool.poetry.dependencies]
python = ">=3.9, !=3.9.7, <3.13"
scikit-learn = "^1.3"
scipy = "^1.11"
streamlit = "^1.30.0"
matplotlib = "^3.8.2"
nest-asyncio = "^1.5"
plotly = "^5.15.0"
tabulate = "^0.8"
pandas = "^2.1.3"
numpy = "^1.26.2"
[build-system]
requires = ["poetry-core", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
myst-parser = ">=0.16"
sphinx = ">=4.0"
sphinx-autobuild = ">=2021.0"
sphinx-book-theme = ">=1.0"
nbsphinx = ">0.9"
[tool.poetry.group.tests.dependencies]
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
[tool.poetry.urls]
Homepage = "https://github.com/rmj3197/QuadratiK"
[tool.ruff]
line-length = 88 # same as black
exclude = ["*.ipynb"]
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"I", # isort
"PGH", # pygrep-hooks
"RUF", # Ruff-specific
"UP", # pyupgrade
]