-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.14 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
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "opensipscli"
dynamic = ["version"]
description = "OpenSIPS Command Line Interface"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "GNU General Public License v3 (GPLv3)" }
authors = [
{ name = "OpenSIPS Project", email = "project@opensips.org" },
]
maintainers = [
{ name = "Razvan Crainea", email = "razvan@opensips.org" },
]
dependencies = [
"opensips",
"mysqlclient<1.4.0rc1",
"sqlalchemy>=1.3.3,<2",
"sqlalchemy-utils",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/OpenSIPS/opensips-cli"
Source = "https://github.com/OpenSIPS/opensips-cli"
Issues = "https://github.com/OpenSIPS/opensips-cli/issues"
Download = "https://github.com/OpenSIPS/opensips-cli/archive/master.zip"
[project.scripts]
opensips-cli = "opensipscli.main:main"
[tool.hatch.version]
path = "opensipscli/version.py"
[tool.hatch.build.targets.wheel]
packages = ["opensipscli"]