forked from conda/constructor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (46 loc) · 1.03 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=70.1", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "constructor"
description = "create installer from conda packages"
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.8"
dynamic = [
"version",
]
dependencies = [
"conda >=4.6",
"ruamel.yaml >=0.11.14,<0.19",
"pillow >=3.1 ; platform_system=='Windows' or platform_system=='Darwin'",
]
[project.scripts]
constructor = "constructor.main:main"
[project.urls]
repository = "https://github.com/conda/constructor"
[tool.setuptools_scm]
write_to = "constructor/_version.py"
[tool.setuptools.packages.find]
where = ["."]
include = ["constructor*"]
namespaces = true
[tool.setuptools.package-data]
constructor = [
"header.sh",
"nsis/*",
"osx/*",
"ttf/*",
]
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310']
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
markers = [
"examples",
]