-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
44 lines (40 loc) · 1.28 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", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "imelt"
version = "2.1.3"
dependencies = [
"matplotlib",
"numpy",
"scipy",
"rampy",
"h5py",
"torch",
"scikit-learn",
"pandas",
"openpyxl",
]
authors = [
{name = "Charles Le Losq", email = "[email protected]"},
{name = "Barbara Baldoni", email = "[email protected]"},
{name = "Andrew Valentine", email = "[email protected]"},
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
description = "A physics-guided neural network model for the prediction of structural, thermodynamic and dynamic properties of aluminosilicate melts and glasses."
readme = "README.md"
keywords = ["properties", "raman", "liquid", "glass", "magma", "aluminosilicate"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.optional-dependencies]
[tool.setuptools.package-data]
"imelt" = ["models/best_list.csv", "models/*.pth", "data/*.hdf5"]
[project.urls]
Homepage = "https://github.com/charlesll/i-melt"
Documentation = "https://i-melt.readthedocs.io/en/latest/"
Repository = "https://github.com/charlesll/i-melt.git"
"Bug Tracker" = "https://github.com/charlesll/i-melt/issues"
Changelog = "https://github.com/charlesll/i-melt/NEWS.md"