mirror of https://github.com/pypa/pep517.git
API to call PEP 517 hooks for building Python packages
https://pep517.readthedocs.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
619 B
24 lines
619 B
[build-system] |
|
requires = ["flit_core >=2,<4"] |
|
build-backend = "flit_core.buildapi" |
|
|
|
[tool.flit.metadata] |
|
module = "pep517" |
|
author = "Thomas Kluyver" |
|
author-email = "thomas@kluyver.me.uk" |
|
home-page = "https://github.com/pypa/pep517" |
|
description-file = "README.rst" |
|
requires = [ |
|
"tomli >=1.1.0;python_version<'3.11'", |
|
"importlib_metadata;python_version<'3.8'", |
|
"zipp;python_version<'3.8'", |
|
] |
|
requires-python = ">=3.6" |
|
classifiers = [ |
|
"License :: OSI Approved :: MIT License", |
|
"Programming Language :: Python :: 3", |
|
"Programming Language :: Python :: 3 :: Only", |
|
] |
|
|
|
[tool.isort] |
|
profile = "black"
|
|
|