|
| 1 | +# Copyright 2025 Zeppelin Bend Pty Ltd |
| 2 | +# |
| 3 | +# This Source Code Form is subject to the terms of the Mozilla Public |
| 4 | +# License, v. 2.0. If a copy of the MPL was not distributed with this |
| 5 | +# file, You can obtain one at https://mozilla.org/MPL/2.0/. |
| 6 | + |
| 7 | +[build-system] |
| 8 | +requires = [ |
| 9 | + "setuptools", |
| 10 | + "wheel", |
| 11 | + "build>=1.2.0" |
| 12 | +] |
| 13 | +build-backend = "setuptools.build_meta" |
| 14 | + |
| 15 | +[project] |
| 16 | +name = "zepben.eas" |
| 17 | +version = "0.23.0b1" |
| 18 | +description = "Python SDK for interacting with the Evolve App Server" |
| 19 | +readme = {file = "README.md", content-type = "test/markdown"} |
| 20 | +license = "MPL-2.0" |
| 21 | +requires-python = '>=3.10' |
| 22 | +authors = [ |
| 23 | + {name = "Ramon Bouckaert", email = "ramon.bouckaert@zepben.com"}, |
| 24 | + {name = "Max Chesterfield", email = "max.chesterfield@zepben.com"} |
| 25 | +] |
| 26 | +dependencies = [ |
| 27 | + "geojson==2.5.0", |
| 28 | + "requests<3.0.0,>=2.26.0", |
| 29 | + "urllib3==1.26.6", |
| 30 | + "zepben.auth==0.12.1", |
| 31 | + "aiohttp[speedups]==3.9.0", |
| 32 | +] |
| 33 | +classifiers = [ |
| 34 | + "Programming Language :: Python :: 3", |
| 35 | + "Programming Language :: Python :: 3.10", |
| 36 | + "Programming Language :: Python :: 3.11", |
| 37 | + "Programming Language :: Python :: 3.12", |
| 38 | + "Programming Language :: Python :: 3.13", |
| 39 | + "Operating System :: OS Independent" |
| 40 | +] |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +Repository = "https://github.com/zepben/eas-python-client" |
| 44 | +Homepage = "https://zepben.com" |
| 45 | + |
| 46 | +[project.optional-dependencies] |
| 47 | +test = [ |
| 48 | + "pytest", |
| 49 | + "pytest-cov", |
| 50 | + "pytest-httpserver==1.0.8", |
| 51 | + "trustme==0.9.0" |
| 52 | +] |
| 53 | + |
| 54 | +[tool.setuptools.packages.find] |
| 55 | +where = ["src/"] |
0 commit comments