-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 831 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 831 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>=64", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "leep"
description = "LBNL Embedded Ethernet Protocol tooling"
dependencies = [
"cothread",
"numpy",
"matplotlib",
]
authors = [
{name = "Michael Davidsaver", email = "mdavidsaver@gmail.com"}
]
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://gitlab.lbl.gov/drivers/leep"
Issues = "https://gitlab.lbl.gov/drivers/leep/issues"
[project.scripts]
leep = "leep.cli:main"
[tool.setuptools_scm]
version_file = "leep/__version__.py"