-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 980 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools>=65.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "linkzone"
version = "0.2.1"
description = "SDK for Alcatel Linkzone modems: MW41NF, MW41CL"
readme = "README.md"
authors = [
{ name = "Jimmy Angel Pérez Díaz", email = "jianpedi@gmail.com" },
]
license.file = "LICENSE"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Communications :: Internet Phone",
"Topic :: Internet",
"Topic :: Software Development :: Libraries"
]
keywords = ["alcatel", "linkzone", "SDK", "API", "SMS"]
requires-python = ">=3.10"
dependencies = ["requests"]
[project.optional-dependencies]
dev = ["pytest", "black"]
docs = ["sphinx", "sphinx-rtd-theme"]
[project.urls]
Source = "https://github.com/JimScope/linkzone"