-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.73 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
56
57
58
59
# Copyright 2025 Zeppelin Bend Pty Ltd
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
[build-system]
requires = [
"setuptools",
"wheel",
"build>=1.2.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "zepben.ewb"
version = "1.3.0b3"
description = "Python SDK for interacting with the Energy Workbench platform"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MPL-2.0"
requires-python = '>=3.10,<3.13'
authors = [
{name = "Kurt Greaves", email = "kurt.greaves@zepben.com"},
{name = "Max Chesterfield", email = "max.chesterfield@zepben.com"}
]
dependencies = [
"zepben.protobuf==1.3.0",
"typing_extensions==4.14.1",
"requests==2.32.5",
"urllib3==2.5.0",
"PyJWT==2.10.1"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
[project.urls]
Repository = "https://github.com/zepben/evolve-sdk-python"
Homepage = "https://zepben.com"
[project.optional-dependencies]
test = [
"pytest==8.4.1",
"pytest-cov==6.2.1",
"pytest-asyncio==1.1.0",
"pytest-timeout==2.4.0",
"pytest-subtests==0.14.2",
"hypothesis==6.140.3",
"grpcio-testing==1.61.3",
"pylint==2.14.5",
"six==1.16.0",
"tox"
]
[tool.setuptools.packages.find]
where = ["src/"]