-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 1.27 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "noiphi"
version = "0.1.2"
authors = [
{ name="Tomas Kozlej", email="tomaskoztwo@gmail.com" },
]
description = "A stochastic phase noise simulator using the TK95 algorithm, designed for quantum and photonic systems."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["laser", "phase noise", "quantum", "TK95", "Rydberg", "noise simulation", "photonics"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
]
dependencies = [
"numpy>=1.20",
"scipy>=1.7",
"matplotlib>=3.4",
]
[project.urls]
Repository = "https://github.com/SpeshalK/noiphi"
"Bug Tracker" = "https://github.com/SpeshalK/noiphi/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["noiphi*"]
[tool.pytest.ini_options]
pythonpath = ["src"]