-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
51 lines (44 loc) · 1.38 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = 'alibuild'
dynamic = ['readme', 'version']
description = 'ALICE Build Tool'
keywords = ['HEP', 'ALICE']
license = {text = 'GPL'}
authors = [
{name = 'Giulio Eulisse', email = 'giulio.eulisse@cern.ch'},
{name = 'Timo Wilken', email = 'timo.wilken@cern.ch'},
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6', # slc7, slc8, cs8
'Programming Language :: Python :: 3.8', # ubuntu2004
'Programming Language :: Python :: 3.9', # slc9
'Programming Language :: Python :: 3.10', # ubuntu2204
'Programming Language :: Python :: 3.11', # MacOS
'Programming Language :: Python :: 3.12', # MacOS
]
dependencies = [
'pyyaml',
'requests',
'distro',
'jinja2',
'boto3',
]
[project.urls]
homepage = 'https://alisw.github.io/alibuild'
[scripts]
aliBuild = {path = "aliBuild"}
alienv = {path = "alienv"}
aliDoctor = {path = "aliDoctor"}
aliDeps = {path = "aliDeps"}
pb = {path = "pb"}
[tool.setuptools_scm]
write_to = "alibuild_helpers/_version.py"
[tool.setuptools.package-data]
alibuild_helpers = ['build_template.sh']