-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·105 lines (99 loc) · 4.2 KB
/
setup.py
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/env python3
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import sys
try:
from setuptools import setup, find_packages
except ImportError:
print(
"BuildStream requires setuptools in order to locate plugins. Install "
"it using your package manager (usually python3-setuptools) or via "
"pip (pip3 install setuptools)."
)
sys.exit(1)
###############################################################################
# Parse README #
###############################################################################
with open(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "README.rst"),
encoding="utf-8",
) as readme:
long_description = readme.read()
###############################################################################
# Load the version #
###############################################################################
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
from buildstream_plugins import __version__ # pylint: disable=wrong-import-position
setup(
name="buildstream-plugins",
version=__version__,
author="The Apache Software Foundation",
author_email="[email protected]",
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
],
description="A collection of plugins for BuildStream.",
long_description=long_description,
long_description_content_type="text/x-rst; charset=UTF-8",
license="Apache License Version 2.0",
url="https://buildstream.build",
project_urls={
"Documentation": "https://apache.github.io/buildstream-plugins/",
"Source": "https://github.com/apache/buildstream-plugins/",
"Tracker": "https://github.com/apache/buildstream-plugins/issues",
"Mailing List": "https://lists.apache.org/[email protected]",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
entry_points={
"buildstream.plugins.elements": [
"autotools = buildstream_plugins.elements.autotools",
"cmake = buildstream_plugins.elements.cmake",
"make = buildstream_plugins.elements.make",
"meson = buildstream_plugins.elements.meson",
"pip = buildstream_plugins.elements.pip",
"setuptools = buildstream_plugins.elements.setuptools",
],
"buildstream.plugins.sources": [
"bzr = buildstream_plugins.sources.bzr",
"cargo = buildstream_plugins.sources.cargo",
"docker = buildstream_plugins.sources.docker",
"git = buildstream_plugins.sources.git",
"patch = buildstream_plugins.sources.patch",
"pip = buildstream_plugins.sources.pip",
"zip = buildstream_plugins.sources.zip",
],
"buildstream.plugins.sourcemirrors": [
"gitlab_lfs_mirror = buildstream_plugins.sourcemirrors.gitlab_lfs_mirror",
"simple_mirror = buildstream_plugins.sourcemirrors.simple_mirror",
],
},
extras_require={
"cargo": ['tomli; python_version < "3.11"'],
},
zip_safe=False,
)
# eof setup()