Skip to content

Commit 7175ce2

Browse files
Merge pull request #11 from bystrogenomics/feature/tutorials
Modified pyproject to load data
2 parents 48d17b3 + 0e26919 commit 7175ce2

File tree

6 files changed

+3690
-42
lines changed

6 files changed

+3690
-42
lines changed

pyproject.toml

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,41 @@
11
[build-system]
2-
requires = ["setuptools>=42", "wheel"]
2+
requires = ["setuptools>=61", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "scikit-covtest"
77
version = "0.1.0"
88
description = "Covariance Hypothesis Testing and Evaluation"
99
authors = [
10-
{ name="Austin Talbot", email="austin.talbot1993@gmail.com" }
10+
{ name = "Austin Talbot", email = "austin.talbot1993@gmail.com" }
1111
]
1212
readme = "README.md"
1313
license = { text = "MIT" }
14+
requires-python = ">=3.8"
15+
1416
dependencies = [
15-
'numba',
16-
'numpy',
17-
'pandas',
18-
'scikit-learn',
19-
'scipy',
20-
'tqdm',
21-
'cloudpickle',
22-
'matplotlib',
23-
'cvxpy',
24-
'statsmodels',
25-
'pytest',
17+
"numba",
18+
"numpy",
19+
"pandas",
20+
"scikit-learn",
21+
"scipy",
22+
"tqdm",
23+
"cloudpickle",
24+
"matplotlib",
25+
"cvxpy",
26+
"statsmodels",
27+
"pytest",
2628
]
27-
requires-python = ">=3.8"
2829

2930
[project.urls]
3031
Homepage = "https://github.com/bystrogenomics/scikit-covtest"
3132

33+
[tool.setuptools]
34+
include-package-data = true
35+
36+
[tool.setuptools.packages.find]
37+
include = ["covtest*"]
38+
39+
[tool.setuptools.package-data]
40+
"covtest.datasets" = ["data/*.npz"]
41+

setup.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

tutorials/tutorial_identity.ipynb

Lines changed: 797 additions & 0 deletions
Large diffs are not rendered by default.

tutorials/tutorial_proportionality.ipynb

Lines changed: 941 additions & 0 deletions
Large diffs are not rendered by default.

tutorials/tutorial_sphericity.ipynb

Lines changed: 970 additions & 0 deletions
Large diffs are not rendered by default.

tutorials/tutorial_two_sample.ipynb

Lines changed: 958 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)