-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
38 lines (33 loc) · 866 Bytes
/
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
[build-system]
requires = ["setuptools"]
build.backend = "setuptools.build_meta"
[project]
name = "gigaset"
authors = [
{name = "Bernhard Seibold", email="[email protected]"},
]
description = """\
A small web-app that serves as a proxy for phone
number lookups for Gigaset DECT base stations"""
readme = "README.rst"
license = {text = "MIT"}
requires-python = ">=3.2"
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Flask",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Communications :: Telephony",
]
dynamic = ["version"]
dependencies = [
"Flask>=1.0.0",
"beautifulsoup4>=4.8.0",
"phonenumbers",
]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "gigaset.__version__"}
[tool.isort]
profile = "black"