forked from CoolProp/CoolProp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 893 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 893 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm", "cython"]
build-backend = "backend"
backend-path = ["_py_backend"]
[project]
name = "coolprop"
authors = [
{name = "Ian Bell", email = "ian.h.bell@gmail.com"},
]
description = "Open-source thermodynamic and transport properties database"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"cython",
"numpy",
"setuptools"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "_py_backend.__version__"}
[tool.setuptools.packages.find]
where = ["wrappers/Python"]