forked from lightwave-lab/lightlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.14 KB
/
pyproject.toml
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", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "lightlab"
authors = [
{name = "Alex Tait", email = "atait@ieee.org"},
{name = "Thomas Ferreira de Lima", email = "github@tlima.me"},
]
maintainers = [
{name = "Thomas Ferreira de Lima", email = "github@tlima.me"}
]
description = "Lightwave Lab instrument automation tools"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ["gpib", "visa", "instrument control"]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware :: Hardware Drivers",
"Framework :: Jupyter",
]
dependencies = [
'dpath',
'jsonpickle>=1.4.1',
'matplotlib',
'IPython',
'PyVISA',
'scipy',
'scikit-learn',
'dill',
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/lightwave-lab/lightlab"
[project.scripts]
lightlab = "lightlab.command_line:main"
[tool.setuptools.dynamic]
version = {attr = "version.version"}
[tool.setuptools]
packages = ["lightlab"]