blob: 3f4ddac5697ab807d5bc26e301625f61cada9137 [file] [log] [blame]
garciadeblas8d41d562022-11-24 14:42:35 +01001#!/usr/bin/env python3
2#
3# Copyright ETSI Contributors and Others.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14# implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18import os
Mark Beierl9ed3fa42023-03-01 18:51:34 +000019
20from setuptools import find_namespace_packages, setup
garciadeblas8d41d562022-11-24 14:42:35 +010021
22_name = "osm_ngsa"
23_description = "OSM Service Assurance Airflow DAGs and libraries"
24with open(os.path.join(".", "README.rst")) as readme_file:
25 README = readme_file.read()
26
27setup(
28 name=_name,
29 description=_description,
30 long_description=README,
Mark Beierl9ed3fa42023-03-01 18:51:34 +000031 use_scm_version={"write_to": "src/osm_ngsa/_version.py"},
garciadeblas8d41d562022-11-24 14:42:35 +010032 author="ETSI OSM",
33 author_email="osmsupport@etsi.org",
34 maintainer="ETSI OSM",
35 maintainer_email="osmsupport@etsi.org",
36 url="https://osm.etsi.org/gitweb/?p=osm/NG-SA.git;a=summary",
37 license="Apache 2.0",
38 package_dir={"": "src"},
Mark Beierl9ed3fa42023-03-01 18:51:34 +000039 packages=find_namespace_packages(where="src"),
garciadeblas8d41d562022-11-24 14:42:35 +010040 include_package_data=True,
41 setup_requires=["setuptools-scm"],
42)