Skip to content

Commit

Permalink
debug toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Harrinive committed May 1, 2024
1 parent 2dc8536 commit a007d5a
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 144 deletions.
53 changes: 52 additions & 1 deletion pyproject.toml
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"
1 change: 1 addition & 0 deletions qfit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

import scqubits as scq
from qfit.core.qfit import Fit
from qfit.version import __version__, __version_tuple__

scq.settings.PROGRESSBAR_DISABLED = True

Expand Down
7 changes: 7 additions & 0 deletions setup.cfg
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*
143 changes: 0 additions & 143 deletions setup.py

This file was deleted.

0 comments on commit a007d5a

Please sign in to comment.