File: setup.py

package info (click to toggle)
kopeninghours 25.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 936 kB
  • sloc: cpp: 3,918; yacc: 795; lex: 335; python: 18; sh: 17; makefile: 16
file content (15 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-FileCopyrightText: 2020 David Faure <faure@kde.org>
# SPDX-License-Identifier: LGPL-2.0-or-later

from skbuild import setup

setup(
    name="PyKOpeningHours",
    version="1.6.0",
    description="Validator for OSM opening_hours expressions",
    author='David Faure',
    license="AGPL",
    package_data={'PyKOpeningHours': ['py.typed', 'PyKOpeningHours.pyi']},
    packages=['PyKOpeningHours'],
    cmake_args=['-DVALIDATOR_ONLY=TRUE', '-DBUILD_SHARED_LIBS=FALSE', '-DCMAKE_BUILD_TYPE=Release']
)