-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Starting with [PEP 621](https://peps.python.org/pep-0621/), the Python community selected pyproject.toml as a standard way of specifying project metadata. Setuptools has adopted this standard and will use the information contained in this file as an input in the build process. Dropped the `platforms` key, it caused the following error on `python -m build`: ``` ValueError: invalid pyproject.toml config: `project`. configuration error: `project` must not contain {'platforms'} properties ```
- Loading branch information
1 parent
58cd6a9
commit a9edf58
Showing
2 changed files
with
50 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,7 @@ | ||
[metadata] | ||
name = django-phonenumber-field | ||
description = An international phone number field for django models. | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
url = https://github.com/stefanfoulis/django-phonenumber-field | ||
license = MIT | ||
author = Stefan Foulis | ||
author_email = stefan@foulis.ch | ||
maintainer = Stefan Foulis | ||
maintainer_email = stefan@foulis.ch | ||
platforms = OS Independent | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Framework :: Django | ||
Framework :: Django :: 3.2 | ||
Framework :: Django :: 4.1 | ||
Framework :: Django :: 4.2 | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
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 :: Implementation :: CPython | ||
Topic :: Internet :: WWW/HTTP | ||
|
||
[options] | ||
python_requires = >=3.7 | ||
install_requires = | ||
Django >= 3.2 | ||
|
||
[options.extras_require] | ||
phonenumbers = | ||
phonenumbers >= 7.0.2 | ||
phonenumberslite = | ||
phonenumberslite >= 7.0.2 | ||
|
||
[flake8] | ||
max-line-length = 88 | ||
show-source = True | ||
extend-exclude = | ||
.env/ | ||
.venv/ | ||
venv/ | ||
|
||
[isort] | ||
profile = black |