File: pyproject.toml

package info (click to toggle)
iottycloud 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: python: 294; makefile: 3
file content (33 lines) | stat: -rw-r--r-- 860 bytes parent folder | download
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",
]