Show More
@@ -0,0 +1,2 b'' | |||
|
1 | # See https://setuptools.pypa.io/en/latest/build_meta.html#dynamic-build-dependencies-and-other-build-meta-tweaks | |
|
2 | from setuptools.build_meta import * |
@@ -2,6 +2,7 b' include README.rst' | |||
|
2 | 2 | include COPYING.rst |
|
3 | 3 | include LICENSE |
|
4 | 4 | include setupbase.py |
|
5 | include _build_meta.py | |
|
5 | 6 | include MANIFEST.in |
|
6 | 7 | include py.typed |
|
7 | 8 | include .mailmap |
@@ -1,6 +1,9 b'' | |||
|
1 | 1 | [build-system] |
|
2 | 2 | requires = ["setuptools >= 51.0.0"] |
|
3 | build-backend = "setuptools.build_meta" | |
|
3 | # We need access to the 'setupbase' module at build time. | |
|
4 | # Hence we declare a custom build backend. | |
|
5 | build-backend = "_build_meta" # just re-exports setuptools.build_meta definitions | |
|
6 | backend-path = ["."] | |
|
4 | 7 | |
|
5 | 8 | [tool.mypy] |
|
6 | 9 | python_version = "3.10" |
General Comments 0
You need to be logged in to leave comments.
Login now