-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (49 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
51 lines (49 loc) · 1.67 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
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "simcats"
version = "2.0.0" # also update in docs (conf.py) and simcats (__init__.py)
license = "CC-BY-NC-SA-4.0"
license-files = ["LICENSE"]
authors = [
{ name="Fabian Hader", email="f.hader@fz-juelich.de" },
{ name="Sarah Fleitmann", email="s.fleitmann@fz-juelich.de" },
{ name="Benjamin Papajewski", email="b.papajewski@fz-juelich.de"},
{ name="Fabian Fuchs", email="f.fuchs@fz-juelich.de" },
{ name="Karin Havemann", email="k.havemann@fz-juelich.de" },
{ name="Jan Vogelbruch", email="j.vogelbruch@fz-juelich.de" },
]
description = """\
SimCATS is a python framework for simulating charge stability diagrams (CSDs) typically measured during the tuning process of qubits.\
"""
requires-python = ">=3.7"
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Typing :: Typed',
]
dependencies = [
'bezier',
'colorednoise',
'diplib',
'matplotlib',
'numpy',
'opencv-python',
'scipy',
'sympy'
]
[project.urls]
homepage = "https://github.com/f-hader/SimCATS"
documentation = "https://simcats.readthedocs.io"
source = "https://github.com/f-hader/SimCATS"
tracker = "https://github.com/f-hader/SimCATS/issues"