-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 901 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pypdm"
version = "2.0"
description = "Python3 library for controlling Alphanov's PDM laser sources."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { file = "COPYING.LESSER" }
authors = [
{ name = "Olivier Heriveaux" }
]
dependencies = [
"pyserial"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/Ledger-Donjon/pypdm"
Repository = "https://github.com/Ledger-Donjon/pypdm"
Documentation = "https://pypdm.readthedocs.io"
[tool.setuptools.packages.find]
where = ["."]
include = ["pypdm*"]
[tool.setuptools.package-data]
"pypdm" = ["py.typed"]