-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 796 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chemics"
version = "24.1"
authors = [{name = "Gavin Wiggins"}]
description = "A Python package for chemical engineering"
readme = "README.md"
dependencies = ["matplotlib", "numpy", "pandas", "scipy"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.optional-dependencies]
docs = ["sphinx", "sphinx-rtd-theme"]
[project.urls]
Homepage = "https://github.com/wigging/chemics"
Documentation = "https://chemics.readthedocs.io"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["E501", "D"]
ignore = ["D200", "D212"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"