forked from pyrometheus/pyrometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (67 loc) · 1.78 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyrometheus"
version = "1.0.2"
readme = "README.rst"
authors = [
{ name="Esteban Cisneros", email="[email protected]" },
{ name="Andreas Kloeckner", email="[email protected]" },
{ name="Henry Le Berre", email="[email protected]" },
]
description = "Code generation for combustion thermochemistry, based on Cantera."
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Code Generators"
]
dependencies = [
"cantera",
"pymbolic",
"mako",
]
[project.urls]
Documentation = "https://pyrometheus.readthedocs.io"
Source = "https://github.com/pyrometheus/pyrometheus"
Issues = "https://github.com/pyrometheus/pyrometheus/issues"
[tool.flake8]
ignore = [
"E126", "E127", "E128", "E123", "E226",
"E241", "E242", "E265", "E402", "W503",
"E731",
]
max-line-length = 85
exclude = ["pytools/arithmetic_container.py", "pytools/decorator.py", "build"]
inline-quotes = '"'
docstring-quotes = '"'
multiline-quotes = '"""'
[project.optional-dependencies]
dev = [
"flake8",
"pep8-naming",
"flake8-quotes",
"flake8-bugbear",
"Flake8-pyproject",
]
test = [
"jax",
"jaxlib",
"pytest",
"pybind11",
]
docs = [
"furo",
"setuptools",
"sphinx-copybutton",
"sphinx>=4.0.2",
]