forked from ngrok/ngrok-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.39 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
41
42
[project]
name = "ngrok"
readme = "README.md"
requires-python = ">=3.7"
platforms = ["linux", "osx", "win32"]
# https://pypi.org/classifiers/
classifiers = ["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls"]
keywords = ["ngrok", "python", "pypi", "pyo3", "ingress", "networking"]
categories = ["ngrok", "api-bindings", "development-tools::networking", "networking"]
license = {text = "MIT OR Apache-2.0"}
[project.urls]
homepage = "https://ngrok.com"
# documentation = "readthedocs.org"
repository = "https://github.com/ngrok/ngrok-python"
changelog = "https://github.com/ngrok/ngrok-python/blob/main/CHANGELOG.md"
[project.scripts]
ngrok-asgi = "ngrok:__main__.asgi_cli"
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"