blob: 44e2a550c4e2214e30a6c74e50cf562cdf9a9b7d [file] [log] [blame]
Nathan Knutha96d20d2016-09-08 14:40:26 -07001#!/usr/bin/env python
Zack Williams41513bf2018-07-07 20:08:35 -07002# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Nathan Knutha96d20d2016-09-08 14:40:26 -070015
16import os
17from setuptools import setup
18
19# Utility function to read the README file.
20def read(fname):
21 return open(os.path.join(os.path.dirname(__file__), fname)).read()
22
Nathan Knutha96d20d2016-09-08 14:40:26 -070023setup(
24 name = 'voltha',
Jonathan Hart91e3ac12018-07-11 11:36:01 -070025 version = '2.0.0-dev',
Kim Kempf01e23a82018-02-09 14:23:50 -080026 author = 'Open Networking Foundation, et al',
27 author_email = 'info@opennetworking.org',
Nathan Knutha96d20d2016-09-08 14:40:26 -070028 description = ('Virtual Optical Line Terminal (OLT) Hardware Abstraction'),
Kim Kempf01e23a82018-02-09 14:23:50 -080029 license = 'Apache License 2.0',
Nathan Knutha96d20d2016-09-08 14:40:26 -070030 keywords = 'volt gpon cord',
Kim Kempf01e23a82018-02-09 14:23:50 -080031 url = 'https://gerrit.opencord.org/#/q/project:voltha',
Nathan Knutha96d20d2016-09-08 14:40:26 -070032 packages=['voltha', 'tests'],
33 long_description=read('README.md'),
34 classifiers=[
35 'Development Status :: 3 - Alpha',
36 'Topic :: System :: Networking',
37 'Programming Language :: Python',
38 'License :: OSI Approved :: Apache License 2.0',
39 ],
Nathan Knutha96d20d2016-09-08 14:40:26 -070040)