-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 813 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lakeshore625"
version = "0.1.0"
description = "Simple Python interface for Lake Shore 625 Superconducting Magnet Power Supply"
authors = [
{ name = "Nikki Zivkov", email = "nzivkov@ucsb.edu" }
]
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"pyserial",
"pandas",
"numpy",
"matplotlib"
]
[project.urls]
Homepage = "https://github.com/MazinLab/lakeshore625-python"
[project.scripts]
lakeshore625 = "lakeshore625.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["lakeshore625*"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true