-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 747 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
# using https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#flat-layout
[project]
name = "elitech"
version = "0.0.1"
description = "Library and command line tool for Elitech data logger"
readme = "README.md"
authors = [
{name = "Pascal Combes", email = "pascom@orange.fr"},
]
keywords = ["elitech", "logger"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.4, <4"
[project.urls]
repository = "https://github.com/pasccom/python-elitech"
[project.scripts]
elitech = "elitech.src.main:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = [
"elitech*",
"HIDParser.hid_parser*",
]
exclude = [
"elitech.test*",
]