-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 908 Bytes
/
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
[project]
name = "pyeclab"
version = "0.1.0"
description = "A Python wrapper around the EC-Lab SDK for the control of BioLogic potentiostats."
authors = [
{name = "Federico Scarpioni", email = "federicoscarpioni@gmail.com"},
{name = "Jan Conen", email = "janconen@posteo.de"},
]
maintainers = [
{name = "Federico Scarpioni", email = "federicoscarpioni@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"matplotlib",
"pandas",
"numpy",
"attrs",
]
license = "MIT"
license-files = ["LICENSE"]
[project.optional-dependencies]
buffer = ["np-rw-ringbuffer"]
[project.urls]
Repository = "https://github.com/federicoscarpioni/pyeclab.git"
Issues = "https://github.com/federicoscarpioni/pyeclab/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "S", "UP"]