summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-setuptools-cpp/package.py
blob: 091381f81a4556add5ffb08002eacd8a7900dc40 (plain) (blame)
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
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class PySetuptoolsCpp(PythonPackage):
    """Simplified packaging for pybind11-based C++ extensions"""

    homepage = "https://github.com/dmontagu/setuptools-cpp"
    pypi     = "setuptools_cpp/setuptools_cpp-0.1.0.tar.gz"

    maintainers = ['dorton']

    version('0.1.0', sha256='4fd5e08603237578d06d28efd592d9847b523ede3e502f660be44b1e6254674d')

    depends_on('py-setuptools', type='build')
    depends_on('py-appdirs', type=('build', 'run'))
    depends_on('py-atomicwrites', type=('build', 'run'))
    depends_on('py-attrs', type=('build', 'run'))
    depends_on('py-black', type=('build', 'run'))
    depends_on('py-chardet', type=('build', 'run'))
    depends_on('py-colorama', type=('build', 'run'))
    depends_on('py-chardet', type=('build', 'run'))
    depends_on('py-certifi', type=('build', 'run'))
    depends_on('py-click', type=('build', 'run'))
    depends_on('py-codecov', type=('build', 'run'))
    depends_on('py-coverage', type=('build', 'run'))
    depends_on('py-entrypoints', type=('build', 'run'))
    depends_on('py-flake8', type=('build', 'run'))
    depends_on('py-importlib-metadata', type=('build', 'run'))
    depends_on('py-isort', type=('build', 'run'))
    depends_on('py-jinja2', type=('build', 'run'))
    depends_on('py-markdown', type=('build', 'run'))
    depends_on('py-markupsafe', type=('build', 'run'))
    depends_on('py-mccabe', type=('build', 'run'))
    depends_on('py-more-itertools', type=('build', 'run'))
    depends_on('py-mypy', type=('build', 'run'))
    depends_on('py-mypy-extensions', type=('build', 'run'))
    depends_on('py-packaging', type=('build', 'run'))
    depends_on('py-pathspec', type=('build', 'run'))
    depends_on('py-pluggy', type=('build', 'run'))
    depends_on('py-tornado', type=('build', 'run'))
    depends_on('py-typed-ast', type=('build', 'run'))