-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (77 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
83 lines (77 loc) · 1.98 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyThermoModels"
version = "1.6.0"
description = "PyThermoModels is an open-source Python package designed to facilitate thermodynamic modeling and calculations. This package provides a comprehensive and user-friendly interface to popular thermodynamic models, enabling quick and accurate estimation of key properties."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "Sina Gilassi", email = "sina.gilassi@gmail.com"}
]
keywords = [
'chemical-engineering',
'equation-of-state',
'thermodynamic-properties',
'activity-coefficient',
'thermodynamic-models',
'NRTL',
'UNIQUAC',
'SRK',
'PR',
'RK',
'vdW'
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.11",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"numpy>=2.3.3",
"scipy>=1.16.2",
"pydantic-settings>=2.10.1",
"pydantic>=2.11.9",
"pyyaml>=6.0.2",
"pythermodb",
"pythermodb-settings",
"pythermolinkdb",
"pycuc",
]
[project.urls]
Homepage = "https://github.com/sinagilassi/PyThermoModels"
Documentation = "https://pythermomodels.readthedocs.io/en/latest/"
Source = "https://github.com/sinagilassi/PyThermoModels"
Tracker = "https://github.com/sinagilassi/PyThermoModels/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = [
"tests",
"tests.*",
"examples",
"examples.*",
"notebooks",
"notebooks.*",
"statics",
"statics.*",
"private",
"private.*",
"app",
"app.*"
]
[tool.setuptools.package-data]
pyThermoModels = [
'config/*.yml',
'config/*.csv',
'data/*.csv',
'data/*.yml',
'plugin/*.yml',
'plugin/*.csv'
]