Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
Zack Williams | 41513bf | 2018-07-07 20:08:35 -0700 | [diff] [blame] | 2 | # 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 Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 15 | |
| 16 | import os |
| 17 | from setuptools import setup |
| 18 | |
| 19 | # Utility function to read the README file. |
| 20 | def read(fname): |
| 21 | return open(os.path.join(os.path.dirname(__file__), fname)).read() |
| 22 | |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 23 | setup( |
| 24 | name = 'voltha', |
Jonathan Hart | 91e3ac1 | 2018-07-11 11:36:01 -0700 | [diff] [blame] | 25 | version = '2.0.0-dev', |
Kim Kempf | 01e23a8 | 2018-02-09 14:23:50 -0800 | [diff] [blame] | 26 | author = 'Open Networking Foundation, et al', |
| 27 | author_email = 'info@opennetworking.org', |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 28 | description = ('Virtual Optical Line Terminal (OLT) Hardware Abstraction'), |
Kim Kempf | 01e23a8 | 2018-02-09 14:23:50 -0800 | [diff] [blame] | 29 | license = 'Apache License 2.0', |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 30 | keywords = 'volt gpon cord', |
Kim Kempf | 01e23a8 | 2018-02-09 14:23:50 -0800 | [diff] [blame] | 31 | url = 'https://gerrit.opencord.org/#/q/project:voltha', |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 32 | 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 Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 40 | ) |