-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.33 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pydrawise"
description = "Python API for interacting with Hydrawise sprinkler controllers."
authors = [
{name = "David Knowles", email = "dknowles2@gmail.com"},
]
dependencies = ["aiohttp ", "apischema", "gql", "graphql-core", "requests"]
requires-python = ">=3.10"
dynamic = ["readme", "version"]
license = {text = "Apache-2.0"}
keywords = ["hydrawise", "api", "iot"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/dknowles2/pydrawise"
"Source Code" = "https://github.com/dknowles2/pydrawise"
"Bug Reports" = "https://github.com/dknowles2/pydrawise/issues"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools_scm]
write_to = "pydrawise/_version.py"
[tool.isort]
profile = "black"
combine_as_imports = true
force_sort_within_sections = true
forced_separate = ["tests"]