-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.44 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
# 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.eas"
version = "0.27.0b3"
description = "Python SDK for interacting with the Evolve App Server"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MPL-2.0"
requires-python = '>=3.10'
authors = [
{name = "Ramon Bouckaert", email = "ramon.bouckaert@zepben.com"},
{name = "Max Chesterfield", email = "max.chesterfield@zepben.com"}
]
dependencies = [
"geojson==2.5.0",
"requests<3.0.0,>=2.26.0",
"urllib3==2.5.0",
"zepben.ewb==1.1.0",
"aiohttp[speedups]==3.9.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent"
]
[project.urls]
Repository = "https://github.com/zepben/eas-python-client"
Homepage = "https://zepben.com"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-httpserver==1.0.8",
"trustme==0.9.0"
]
[tool.setuptools.packages.find]
where = ["src/"]