Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | import os |
| 4 | from setuptools import setup |
| 5 | |
| 6 | # Utility function to read the README file. |
| 7 | def read(fname): |
| 8 | return open(os.path.join(os.path.dirname(__file__), fname)).read() |
| 9 | |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 10 | setup( |
| 11 | name = 'voltha', |
Kim Kempf | f9ad69f | 2018-01-12 15:26:52 -0800 | [diff] [blame] | 12 | version = '1.3.0', |
Kim Kempf | 01e23a8 | 2018-02-09 14:23:50 -0800 | [diff] [blame] | 13 | author = 'Open Networking Foundation, et al', |
| 14 | author_email = 'info@opennetworking.org', |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 15 | description = ('Virtual Optical Line Terminal (OLT) Hardware Abstraction'), |
Kim Kempf | 01e23a8 | 2018-02-09 14:23:50 -0800 | [diff] [blame] | 16 | license = 'Apache License 2.0', |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 17 | keywords = 'volt gpon cord', |
Kim Kempf | 01e23a8 | 2018-02-09 14:23:50 -0800 | [diff] [blame] | 18 | url = 'https://gerrit.opencord.org/#/q/project:voltha', |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 19 | packages=['voltha', 'tests'], |
| 20 | long_description=read('README.md'), |
| 21 | classifiers=[ |
| 22 | 'Development Status :: 3 - Alpha', |
| 23 | 'Topic :: System :: Networking', |
| 24 | 'Programming Language :: Python', |
| 25 | 'License :: OSI Approved :: Apache License 2.0', |
| 26 | ], |
Nathan Knuth | a96d20d | 2016-09-08 14:40:26 -0700 | [diff] [blame] | 27 | ) |