-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (36 loc) · 993 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "requests", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pybuild-header-dependency"
authors = [{name = "Tony Xiang", email="tonyxiang@live.nl"}]
description = "Helper package to resolve C/C++ header-only libraries for Python build with native extensions"
readme = "README.md"
license = {text = "BSD License (BSD)"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License"
]
requires-python = ">=3.7"
dependencies = [
"requests"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
'pytest',
'black',
'isort'
]
[project.urls]
Home-page = "https://github.com/TonyXiang8787/pybuild-header-dependency"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
version = {file = "PYPI_VERSION"}
[tool.setuptools.package-data]
pybuild_header_dependency = ["*.json"]
[tool.black]
line-length = 120
target-version = ['py37']