-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "kawin"
version = "0.4.0"
authors = [
{name = "Nicholas Ury", email = "nury12n@gmail.com"},
]
description = "Tool for simulating precipitation using the KWN model coupled with Calphad."
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.11"
dependencies = [
"matplotlib>=3.3",
"numpy>=2.0",
"pycalphad>=0.11",
"scipy",
"setuptools_scm[toml]>=6.0",
]
[project.urls]
Homepage = "https://kawin.org"
[dependency-groups]
dev = [
"pytest",
]
[tool.setuptools_scm]
[tool.coverage.paths]
# The first path is the path to the modules to report coverage against.
# All following paths are patterns to match against the collected data.
# Any matches will be combined with the first path for coverage.
source = [
"./kawin",
"*/lib/*/site-packages/kawin", # allows testing against site-packages for a local virtual environment
]
[tool.coverage.run]
# Only consider coverage for these packages:
source_pkgs = [
"kawin"
]