-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
59 lines (49 loc) · 1.25 KB
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
57
58
59
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">= 3.6"
name = 'alibuild'
dynamic = ['readme', 'version']
description = 'ALICE Build Tool'
keywords = ['HEP', 'ALICE']
license = { file = 'LICENSE' }
authors = [
{name = 'Giulio Eulisse', email = 'giulio.eulisse@cern.ch'},
{name = 'Timo Wilken', email = 'timo.wilken@cern.ch'},
{name = 'Sergio Garcia', email = 'sergio.garcia@cern.ch'},
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
]
dependencies = [
'pyyaml',
'requests',
'distro',
'jinja2',
'boto3',
]
[project.optional-dependencies]
test = [
'tox',
]
docs = [
'mkdocs',
'mkdocs-material',
'mkdocs-redirects',
]
[project.urls]
homepage = 'https://alisw.github.io/alibuild'
[tool.setuptools]
script-files = ["aliBuild", "alienv", "aliDoctor", "aliDeps", "pb"]
[tool.setuptools_scm]
write_to = "alibuild_helpers/_version.py"
[tool.setuptools.package-data]
alibuild_helpers = ['build_template.sh', 'completions/*.sh']
[tool.setuptools.packages.find]
where = ["."]
exclude = ["yaml"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}