-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 1004 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "calzone-tool"
version = "0.1.0"
description = "A package for calibration measurement and analysis"
authors = [
{name = "Kwok Lung (Jason) Fan", email = "[email protected]"},
{name = "Qian Cao", email = "[email protected]"},
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"statsmodels",
]
[project.urls]
Homepage = "https://calzone-docs.readthedocs.io/en/latest/index.html"
Issues = "https://github.com/DIDSR/calzone/issues"
[project.scripts]
calzone = "calzone.cli:main"
[tool.setuptools]
packages = ["calzone"]
[tool.pytest.ini_options]
addopts = "-v --cov=calzone"
testpaths = [
"tests",
]