-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.47 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyThermoLinkDB"
version = "1.4.15"
description = "PyThermoLinkDB is a Python package providing a robust and efficient interface between `PyThermoDB` and other applications."
readme = "README.md"
authors = [
{name = "Sina Gilassi", email = "sina.gilassi@gmail.com"}
]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
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",
]
keywords = ["chemical engineering", "thermodynamics", "PyThermoDB"]
dependencies = [
"pydantic",
"pyyaml",
"pythermodb",
"pythermodb-settings",
]
[project.urls]
Homepage = "https://github.com/sinagilassi/PyThermoLinkDB"
Documentation = "https://pythermolinkdb.readthedocs.io/en/latest/"
Source = "https://github.com/sinagilassi/PyThermoLinkDB"
"Issue Tracker" = "https://github.com/sinagilassi/PyThermoLinkDB/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["pyThermoLinkDB*"]
"exclude" = [
"test",
"*.test",
"*.test.*",
"notebooks",
"notebooks*",
"docs",
"examples",
"examples*"
]
# package data files
[tool.setuptools.package-data]
pyThermoLinkDB = ["data/**/*"]