-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates build system to use latest PEP recommendations
- Loading branch information
Showing
6 changed files
with
61 additions
and
47 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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
src/qt3rfsynthcontrol.egg-info/* | ||
build/* | ||
dist/* | ||
.idea* |
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,57 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "qt3rfsynthcontrol" | ||
dynamic = ["version"] # version is defined in __init__.py | ||
|
||
description = "A package for controlling the Windfreak SynthHD RF generator." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {file = "LICENSE"} | ||
keywords = ["qt3", "microwave", "electron spin control", "windfreak", | ||
"synthHD", "rf generator", "rf synthesizer", "rf control", "rf"] | ||
|
||
authors = [ | ||
{name = "G. Adam Cox", email = "gadamc@gmail.com" }, | ||
] | ||
|
||
maintainers = [ | ||
{name = "G. Adam Cox", email = "gadamc@gmail.com" }, | ||
{name = "Maxwell Parsons", email = "mfpars@uw.edu " }, | ||
] | ||
|
||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
|
||
# Indicate who your project is intended for | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering", | ||
|
||
# Pick your license as you wish | ||
"License :: OSI Approved :: BSD License", | ||
|
||
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate you support Python 3. These classifiers are *not* | ||
# checked by "pip install". See instead "python_requires" below. | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
|
||
dependencies = [ | ||
"windfreak==0.3.0", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/qt3uw/qt3rfsynthcontrol" | ||
"Source" = "https://github.com/qt3uw/qt3rfsynthcontrol" | ||
"Bug Tracker" = "https://github.com/qt3uw/qt3rfsynthcontrol/issues" | ||
"Changelog" = "https://github.com/qt3uw/qt3rfsynthcontrol/releases" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "qt3rfsynthcontrol.__version__"} |
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,2 +1,3 @@ | ||
from .__version__ import __version__ | ||
from .device import QT3SynthHD, discover_devices | ||
|
||
__version__ = '1.0.1.dev0' |
This file was deleted.
Oops, something went wrong.