-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
60 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,54 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "qfit/version.py" | ||
version_scheme = "post-release" | ||
local_scheme = "no-local-version" | ||
fallback_version = "0.0" | ||
|
||
[project] | ||
name = "qfit" | ||
description = "qfit: data extraction GUI tool for use with scQubits" | ||
readme = "README.md" | ||
dynamic = ["version"] | ||
authors = [ | ||
{ name = "Tianpu Zhao", email = "[email protected]" }, | ||
{ name = "Danyang Chen", email = "[email protected]" }, | ||
{ name = "Jens Koch", email = "[email protected]" } | ||
] | ||
license = { file = "LICENSE" } | ||
keywords = ["parameter extraction", "superconducting qubits"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Operating System :: MacOS", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: Microsoft :: Windows" | ||
] | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"numpy >= 1.14.2", | ||
"scipy >= 1.1.0", | ||
"matplotlib >= 3.1.2", | ||
"pyside6", | ||
"h5py >= 2.7.1", | ||
"qutip < 5.0.0", | ||
"scikit-image", | ||
"scqubits >= 3.0.0", | ||
"matplotlib-label-lines", | ||
"ipykernel", | ||
"jupyter", | ||
"pathos", | ||
"dill" | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/scqubits/qfit" | ||
Repository = "https://github.com/scqubits/qfit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[options] | ||
packages = find: | ||
exclude = | ||
resources* | ||
example_data* | ||
danyang_tests* | ||
media_raw_source* |