-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.33 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
[build-system]
requires = ["setuptools<69", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "hardwarelibrary"
dynamic = ["version"] # This line tells setuptools to use setuptools_scm for version
description = "Cross-platform (macOS, Windows, Linux, etc...) library to control various hardware devices mostly for scientific applications."
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
authors = [
{ name = "Daniel Cote", email = "dccote@cervo.ulaval.ca" },
]
keywords = [
"hardware", "devices", "usb", "communication", "app", "control", "spectrometer", "powermeter", "camera"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"matplotlib",
"pyserial",
"pyusb",
"pyftdi",
"LabJackPython"
]
[project.urls]
Homepage = "https://github.com/DCC-Lab/PyHardwareLibrary"
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"