-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.79 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
44
45
46
47
48
49
50
51
52
53
[project]
name = "phonenumbers"
authors = [{name = "David Drysdale", email = "dmd@lurklurk.org"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Communications :: Telephony",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers."
dynamic = ["version"]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=2.5"
urls = {homepage = "https://github.com/daviddrysdale/python-phonenumbers"}
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# phonenumbers/pb2 is considered as package data
include-package-data = false
packages = [
"phonenumbers",
"phonenumbers.data",
"phonenumbers.geodata",
"phonenumbers.shortdata",
"phonenumbers.carrierdata",
"phonenumbers.tzdata",
]
[tool.setuptools.dynamic]
version = {attr = "phonenumbers.__version__"}