blob: 2727686771a3cd57e8dd43627f58f388c0b6e5f0 [file] [log] [blame]
Zack Williams7f87d3e2020-06-05 12:36:39 -07001#!/usr/bin/env python
2
3# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
4# SPDX-License-Identifier: Apache-2.0
5
6from __future__ import absolute_import
7from setuptools import setup
8
9
10def version():
11 with open("VERSION") as f:
12 return f.read()
13
14
15setup(
16 name="cggs",
17 version=version(),
18 description="Crowd-Gerrit Group Sync",
19 author="Open Networking Foundation",
20 author_email="support@opennetworking.org",
21 license="Apache v2",
22 classifiers=[
23 "License :: OSI Approved :: Apache Software License",
24 "Programming Language :: Python :: 3.7",
25 ],
26)