-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
51 lines (43 loc) · 1.22 KB
/
pyproject.toml
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
[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 = {text = "MIT License"}
authors = [{name = "Jonathan McCrohan", email = "jmccrohan@gmail.com"}]
keywords = ["solarman", "igen-tech", "modbus", "solar", "inverter", "solarmanv5"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"umodbus",
]
[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"]
[tool.pylint.MAIN]
ignore-paths='docs,examples,tests'
[tool.pylint."MESSAGES CONTROL"]
# Reasons for disabling:
# format: formatting is handled by black
disable = [
"format",
]