-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.7 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyst"
dynamic = ["version"]
authors = [
{ name="Karl Putland", email="[email protected]" },
{ name="Matthew Nicholson", email="[email protected]" },
{ name="Ralf Schlatterbeck", email="[email protected]" }]
maintainers = [ { name="Ralf Schlatterbeck", email="[email protected]" }]
description = "A Python Interface to Asterisk"
readme = "README.rst"
license = {text = "Python Software Foundation License, GNU Library or Lesser General Public License (LGPL) version 2"}
requires-python = '>=3.7'
classifiers = [
'Development Status :: 5 - Production/Stable'
, 'Environment :: Other Environment'
, 'Intended Audience :: Developers'
, 'Intended Audience :: Telecommunications Industry'
, 'Operating System :: OS Independent'
, 'Programming Language :: Python'
, 'Programming Language :: Python :: 2.4'
, 'Programming Language :: Python :: 2.5'
, 'Programming Language :: Python :: 2.6'
, 'Programming Language :: Python :: 2.7'
, 'Topic :: Communications :: Internet Phone'
, 'Topic :: Communications :: Telephony'
, 'Topic :: Software Development :: Libraries :: Python Modules'
, 'License :: OSI Approved :: Python Software Foundation License'
, 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)'
]
[project.urls]
"Homepage" = "https://github.com/schlatterbeck/pyst"
"Bug Tracker" = "https://github.com/schlatterbeck/pyst/issues"
[tool.setuptools.dynamic]
version = {attr = "asterisk.__version__"}