-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 1.85 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyThermoDB"
version = "1.12.2"
description = "PyThermoDB is a lightweight and user-friendly Python package designed to provide quick access to essential thermodynamic data."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "Sina Gilassi", email = "sina.gilassi@gmail.com"}
]
keywords = [
"chemical-engineering",
"thermodynamics",
"thermodynamic-data",
"thermodynamic-equations",
"thermodynamic-properties",
]
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.2",
"pandas>=2.3.2",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"requests>=2.32.5",
"pyyaml>=6.0.3",
"pythermodb-settings>=0.2.1",
]
[project.urls]
Homepage = "https://github.com/sinagilassi/PyThermoDB"
Documentation = "https://pythermodb.readthedocs.io/en/latest/"
Source = "https://github.com/sinagilassi/PyThermoDB"
Tracker = "https://github.com/sinagilassi/PyThermoDB/issues"
[project.optional-dependencies]
dev = [
"rich>=14.2.0",
]
[tool.uv]
dev-dependencies = [
"rich>=14.2.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = [
"venv",
"venv.*",
"tests",
"tests.*",
"examples",
"examples.*",
"notebooks",
"notebooks.*",
"statics",
"statics.*",
"private",
"private.*",
"app",
"app.*"
]
[tool.setuptools.package-data]
pyThermoDB = [
"config/*.yml",
"data/*.csv",
"templates/*.html",
"static/*",
"static/**/*"
]