forked from jmccrohan/pysolarmanv5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (47 loc) · 1.38 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "pysolarmanv5"
version = "3.0.6"
description = "A Python library for interacting with Solarman (IGEN-Tech) v5 based Solar Data Loggers"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [{name = "Jonathan McCrohan", email = "jmccrohan@gmail.com"}]
keywords = ["solarman", "igen-tech", "modbus", "solar", "inverter", "solarmanv5"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
dependencies = [
"umodbus",
]
[project.scripts]
solarman-decoder = "utils.solarman_decoder:main"
solarman-rtu-proxy = "utils.solarman_rtu_proxy:main"
solarman-scan = "utils.solarman_scan:main"
solarman-uni-scan = "utils.solarman_uni_scan:main"
[project.optional-dependencies]
dev = [
"build",
"twine",
"black",
"pylint",
"pytest",
]
[project.urls]
homepage = "https://github.com/jmccrohan/pysolarmanv5"
repository = "https://github.com/jmccrohan/pysolarmanv5"
documentation = "https://pysolarmanv5.readthedocs.io/"
changelog = "https://pysolarmanv5.readthedocs.io/en/latest/changelog.html"
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pysolarmanv5", "utils"]
[tool.pylint.MAIN]
ignore-paths='docs,examples,tests'
[tool.pylint."MESSAGES CONTROL"]
# Reasons for disabling:
# format: formatting is handled by black
disable = [
"format",
]