-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
36 lines (31 loc) · 970 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "easy-biologic"
dynamic = ["version"]
description = "An easy library for controlling BioLogic devices."
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["biologic"]
authors = [
{ name="Brian Carlsen", email="[email protected]" },
]
requires-python = ">= 3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
]
dependencies = []
[project.optional-dependencies]
pandas = ["pandas"]
[project.urls]
Issues = "https://github.com/bicarlsen/easy-biologic/issues"
Source = "https://github.com/bicarlsen/easy-biologic"
Homepage = "https://github.com/bicarlsen/easy-biologic"
[tool.hatch.version]
path = "src/easy_biologic/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/easy_biologic"]