-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
48 lines (45 loc) · 998 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "diatomic-py"
version = "2.0.0"
description = "A package for calculating rotational and hyperfine structure of singlet diatomic molecules."
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{name = "Jake Blackmore", email = "[email protected]"},
{name = "Tom Hepworth", email = "[email protected]"},
]
keywords = ["quantum", "singlet", "diatomic", "molecules", "hyperfine", "hamiltonian"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"sympy",
"scipy"
]
[project.optional-dependencies]
test = [
"pytest"
]
plotting = [
"matplotlib"
]
docs = [
"sphinx",
"sphinx-book-theme"
]
dev = [
"diatomic-py[test]",
"diatomic-py[docs]",
"black",
"pre-commit",
"ruff",
]
[tool.ruff]
src = ["src"]