File: pyproject.toml

package info (click to toggle)
pyegps 0.2.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: python: 554; makefile: 7; sh: 5
file content (39 lines) | stat: -rw-r--r-- 897 bytes parent folder | download
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
39
[project]
name = "pyEGPS"
dynamic = ["version"]
authors = [
    {name = "Mischa Siekmann", email = "mischa@gnumpi.com"},
]
description = "Controlling Energenie Power Strips with python."
readme = "README.md"
requires-python = ">=3.8"
keywords = []
license     = {text = "Apache-2.0"}
classifiers = [
    "Programming Language :: Python :: 3",
]
dependencies = [
    "pyusb",
]

[project.urls]  # Optional
"Homepage" = "https://github.com/gnumpi/pyegps"

[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
version_file =  "src/pyegps/_version.py"

[tool.mypy]

[[tool.mypy.overrides]]
module = 'usb.*'
ignore_missing_imports = true