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
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "iottycloud"
version = "0.3.0"
authors = [
{ name="Paolo Burgio", email="paolo.burgio@gmail.com" },
{ name="Luca Marzaduri", email="luca.marzaduri@iotty.com" },
{ name="Shapour Nemati", email="shapour.nemati@iotty.com" },
]
description = "A Python library to interact with iotty CloudApi"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/pburgio/iottycloud"
"Bug Tracker" = "https://github.com/pburgio/iottycloud/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/iottycloud"]
[tool.hatch.build]
exclude = [
"/docs",
"/tests",
]
|