-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.35 KB
/
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
44
[build-system]
requires = ["setuptools >= 64.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "MatFold"
dynamic = ["version"]
dependencies = [
'numpy',
'pandas',
'pymatgen>=2024'
]
requires-python = ">=3.10"
authors = [
{name = "Peter Schindler", email = "[email protected]"},
{name = "Matthew D. Witman", email = "[email protected]"}
]
maintainers = [
{name = "Peter Schindler", email = "[email protected]"}
]
description = "Package for systematic insights into materials discovery models’ performance through standardized chemical cross-validation protocols"
readme = "README.md"
license = {file = "LICENSE.md"}
keywords = ["machine learning", "materials science", "cross-validation", "generalization error"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"License :: OSI Approved :: MIT License"
]
[project.urls]
Repository = "https://github.com/d2r2group/MatFold"
[project.optional-dependencies]
dev = ["twine", "build"]
[tool.setuptools_scm]