generated from pypa/sampleproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.34 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"]
build-backend = "setuptools.build_meta"
[project]
name = "BootstrapReport"
version = "3.0.1"
authors = [
{name = "Jesse Shapiro", email = "jesse_shapiro@fas.harvard.edu"},
{name = "Isaiah Andrews", email = "iandrews@mit.edu"}
]
description = "A package for checking normality when using bootstraps"
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.7"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
keywords = ["bootstrap", "diagnostic", "report", "signed kolmogorov"]
dependencies = [
"matplotlib",
"scipy",
"numpy",
"seaborn",
"pandas"
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls] # Optional
"Homepage" = "https://github.com/JMSLab/BootstrapReport"
"Bug Reports" = "https://github.com/pypa/JMSLab/BootstrapReport"
[tool.pytest.ini_options]
pythonpath = ["src", "src/BootstrapReport", "tests"]
testpaths = "tests"