-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (40 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nvmodels"
version = "0.0.1.dev0"
description = "A package for simulating nitrogen-vacancy centers in diamond."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["nitrogen", "vacancy", "diamond", "quantum", "quantum computing",
"quantum information science", "electron spin control", "quantum materials"]
authors = [
{name = "G. Adam Cox", email = "[email protected]" },
]
maintainers = [
{name = "G. Adam Cox", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"qutip>=4.7.1",
"matplotlib>=3.7.1",
"plotly>=5.13.1",
"numpy",
]
[project.urls]
"Homepage" = "https://github.com/gadamc/nvmodels"
"Source" = "https://github.com/gadamc/nvmodels"
"Bug Tracker" = "https://github.com/gadamc/nvmodels/issues"
"Changelog" = "https://github.com/gadamc/nvmodels/releases"