-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (88 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
98 lines (88 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "espei"
authors = [
{name = "Brandon Bocklund", email = "brandonbocklund@gmail.com"},
]
description = "Fitting thermodynamic models with pycalphad."
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11"
dependencies = [
"cerberus",
"corner",
"dask[complete]>=2",
"distributed>=2",
"emcee<3",
"matplotlib",
"numpy>=1.20",
"pycalphad>=0.11.0",
"pydantic>2.0",
"pyyaml",
"setuptools_scm[toml]>=6.0",
"scikit-learn>=1.0",
"scipy",
"symengine>=0.9",
"tinydb>=4",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://espei.org/"
[project.optional-dependencies]
dev = [
"furo",
"ipython",
"pytest",
"sphinx",
"twine",
]
mpi = [
"mpi4py",
"dask-mpi>=2",
]
[project.scripts]
espei = "espei.espei_script:main"
[dependency-groups]
dev = [
"furo",
"ipython",
"pytest",
"sphinx",
"twine",
]
[tool.setuptools.packages.find]
include = ["espei*"]
[tool.setuptools.package-data]
espei = ["input-schema.yaml"]
[tool.pytest.ini_options]
norecursedirs = ["espei/_dev"]
addopts = "--doctest-modules"
testpaths = [
"espei",
"tests",
]
[tool.setuptools_scm]
[tool.coverage.run]
# Only consider coverage for these packages:
source_pkgs = [
"espei"
]