1 | # Copyright (C) 2024 Oracle and/or its affiliates.
|
---|
2 | #
|
---|
3 | # This file is part of VirtualBox base platform packages, as
|
---|
4 | # available from https://www.virtualbox.org.
|
---|
5 | #
|
---|
6 | # This program is free software; you can redistribute it and/or
|
---|
7 | # modify it under the terms of the GNU General Public License
|
---|
8 | # as published by the Free Software Foundation, in version 3 of the
|
---|
9 | # License.
|
---|
10 | #
|
---|
11 | # This program is distributed in the hope that it will be useful, but
|
---|
12 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
14 | # General Public License for more details.
|
---|
15 | #
|
---|
16 | # You should have received a copy of the GNU General Public License
|
---|
17 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
18 | #
|
---|
19 | # The contents of this file may alternatively be used under the terms
|
---|
20 | # of the Common Development and Distribution License Version 1.0
|
---|
21 | # (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
22 | # in the VirtualBox distribution, in which case the provisions of the
|
---|
23 | # CDDL are applicable instead of those of the GPL.
|
---|
24 | #
|
---|
25 | # You may elect to license modified versions of this file under the
|
---|
26 | # terms and conditions of either the GPL or the CDDL or both.
|
---|
27 | #
|
---|
28 | # SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
29 |
|
---|
30 | [project]
|
---|
31 | name = "vboxapi"
|
---|
32 | version = "1"
|
---|
33 | description = "Python interface to VirtualBox"
|
---|
34 | dependencies = [ "packaging" ]
|
---|
35 | authors = [ { name = "Oracle Corp.", email = "[email protected]" } ]
|
---|
36 |
|
---|
37 | [project.urls]
|
---|
38 | Homepage = "https://www.virtualbox.org"
|
---|
39 | Repo = "https://www.virtualbox.org/svn/vbox/"
|
---|
40 | Issues = "https://www.virtualbox.org/wiki/Bugtracker"
|
---|
41 |
|
---|
42 | [build-system]
|
---|
43 | requires = [ "setuptools" ]
|
---|
44 | build-backend = "setuptools.build_meta"
|
---|
45 |
|
---|