|
| 1 | +[project] |
| 2 | +name = "phonenumberslite" |
| 3 | + |
| 4 | +authors = [{ name = "David Drysdale", email = "[email protected]"}] |
| 5 | +classifiers = [ |
| 6 | + "Development Status :: 5 - Production/Stable", |
| 7 | + "Intended Audience :: Developers", |
| 8 | + "Operating System :: OS Independent", |
| 9 | + "Topic :: Communications :: Telephony", |
| 10 | + "Programming Language :: Python :: 2", |
| 11 | + "Programming Language :: Python :: 2.5", |
| 12 | + "Programming Language :: Python :: 2.6", |
| 13 | + "Programming Language :: Python :: 2.7", |
| 14 | + "Programming Language :: Python :: 3", |
| 15 | + "Programming Language :: Python :: 3.3", |
| 16 | + "Programming Language :: Python :: 3.4", |
| 17 | + "Programming Language :: Python :: 3.5", |
| 18 | + "Programming Language :: Python :: 3.6", |
| 19 | + "Programming Language :: Python :: 3.7", |
| 20 | + "Programming Language :: Python :: 3.8", |
| 21 | + "Programming Language :: Python :: 3.9", |
| 22 | + "Programming Language :: Python :: 3.10", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Programming Language :: Python :: 3.12", |
| 25 | + "Programming Language :: Python :: Implementation :: CPython", |
| 26 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 27 | +] |
| 28 | +description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers." |
| 29 | +dynamic = ["version"] |
| 30 | +license = "Apache-2.0" |
| 31 | +readme = "README.md" |
| 32 | +requires-python = ">=2.5" |
| 33 | +urls = {homepage = "https://github.com/daviddrysdale/python-phonenumbers"} |
| 34 | + |
| 35 | +[build-system] |
| 36 | +requires = ["setuptools"] |
| 37 | +build-backend = "setuptools.build_meta" |
| 38 | + |
| 39 | +[tool.setuptools.dynamic] |
| 40 | +version = {attr = "phonenumbers.__version__"} |
| 41 | + |
| 42 | +[tool.setuptools] |
| 43 | +# phonenumbers/pb2 is considered as package data |
| 44 | +include-package-data = false |
| 45 | + |
| 46 | +packages = ["phonenumbers", "phonenumbers.data", "phonenumbers.shortdata"] |
0 commit comments