-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move pep621 standard config to pyproject.toml
- Loading branch information
1 parent
db3d163
commit d604416
Showing
3 changed files
with
54 additions
and
40 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,11 +1,40 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools >= 56.0", | ||
"setuptools >= 61.2", | ||
"wheel >= 0.29.0", | ||
"versioningit >= 1.1.0" | ||
] | ||
build-backend = 'setuptools.build_meta' | ||
|
||
[project] | ||
name = "qcodes_contrib_drivers" | ||
description = "User contributed drivers for QCoDeS" | ||
classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering",] | ||
requires-python = ">=3.8" | ||
dependencies = [ "qcodes>=0.33.0", "versioningit>=1.1.0",] | ||
dynamic = [ "version",] | ||
|
||
[[project.maintainers]] | ||
name = "QCoDeS Community" | ||
email = "[email protected]" | ||
|
||
[project.readme] | ||
file = "README.rst" | ||
content-type = "text/x-rst" | ||
|
||
[project.license] | ||
text = "MIT" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/QCoDeS/Qcodes_contrib_drivers" | ||
Documentation = "https://qcodes.github.io/Qcodes_contrib_drivers/" | ||
Source = "https://github.com/qcodes/qcodes_contrib_drivers" | ||
Tracker = "https://github.com/QCoDeS/Qcodes_contrib_drivers/issues" | ||
|
||
[project.optional-dependencies] | ||
test = [ "pytest>=6.2.2", "pytest-mock", "mypy>=0.940", "pytest-cov>=3.0.0", "coverage[toml]>=6.2", "pyvisa-sim",] | ||
docs = [ "sphinx", "sphinx_rtd_theme", "nbsphinx",] | ||
|
||
[tool.mypy] | ||
strict_optional = true | ||
disallow_untyped_decorators = true | ||
|
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,47 +1,12 @@ | ||
# note that only setuptools specific configuration is | ||
# in this file. Std configuration as defined by pep621 | ||
# and configuration for other tools goes into pyproject.toml | ||
|
||
[metadata] | ||
name = qcodes_contrib_drivers | ||
maintainer = QCoDeS Community | ||
maintainer_email = [email protected] | ||
description = User contributed drivers for QCoDeS | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
url = https://github.com/QCoDeS/Qcodes_contrib_drivers | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: MIT License | ||
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Topic :: Scientific/Engineering | ||
license = MIT | ||
license_files = | ||
LICENSE_TEKTRONIX_AWG520_KEITHLEY_2700 | ||
LICENSE | ||
project_urls = | ||
Documentation = https://qcodes.github.io/Qcodes_contrib_drivers/ | ||
Source = https://github.com/qcodes/qcodes_contrib_drivers | ||
Tracker = https://github.com/QCoDeS/Qcodes_contrib_drivers/issues | ||
|
||
[options] | ||
zip_safe = False | ||
packages = find: | ||
python_requires = >=3.8 | ||
install_requires = | ||
qcodes>=0.33.0 | ||
versioningit>=1.1.0 | ||
|
||
[options.extras_require] | ||
test = | ||
pytest>=6.2.2 | ||
pytest-mock | ||
mypy>=0.940 | ||
pytest-cov>=3.0.0 | ||
coverage[toml]>=6.2 | ||
pyvisa-sim | ||
docs = | ||
sphinx | ||
sphinx_rtd_theme | ||
nbsphinx |
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