-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.63 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyreactsim"
version = "0.1.2"
description = "PyReactSim is a Python package for steady-state chemical reactor simulation, integrating reaction kinetics, thermodynamics, and reactor design tools."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Sina Gilassi", email = "sina.gilassi@gmail.com"}
]
keywords = [
"chemical-engineering",
"process-simulation",
"reactor-design",
"reaction-kinetics",
]
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",
"scipy",
"pydantic",
"pycuc",
"pythermodb",
"pythermolinkdb",
"pythermodb-settings",
"pyreactlab-core",
"pythermocalcdb",
]
[project.urls]
Homepage = "https://github.com/sinagilassi/PyReactSim"
Source = "https://github.com/sinagilassi/PyReactSim"
Tracker = "https://github.com/sinagilassi/PyReactSim/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]
pyreactsim = [
"config/*.yml",
"data/*.csv",
"templates/*.html",
"static/*",
"static/**/*"
]