blob: 3f8a818dc7b998277ddf8f4bb671d02db8290ed7 [file] [log] [blame]
Nathan Knutha96d20d2016-09-08 14:40:26 -07001#!/usr/bin/env python
2
3import os
4from setuptools import setup
5
6# Utility function to read the README file.
7def read(fname):
8 return open(os.path.join(os.path.dirname(__file__), fname)).read()
9
Nathan Knutha96d20d2016-09-08 14:40:26 -070010setup(
11 name = 'voltha',
Kim Kempff9ad69f2018-01-12 15:26:52 -080012 version = '1.3.0',
Kim Kempf01e23a82018-02-09 14:23:50 -080013 author = 'Open Networking Foundation, et al',
14 author_email = 'info@opennetworking.org',
Nathan Knutha96d20d2016-09-08 14:40:26 -070015 description = ('Virtual Optical Line Terminal (OLT) Hardware Abstraction'),
Kim Kempf01e23a82018-02-09 14:23:50 -080016 license = 'Apache License 2.0',
Nathan Knutha96d20d2016-09-08 14:40:26 -070017 keywords = 'volt gpon cord',
Kim Kempf01e23a82018-02-09 14:23:50 -080018 url = 'https://gerrit.opencord.org/#/q/project:voltha',
Nathan Knutha96d20d2016-09-08 14:40:26 -070019 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 Knutha96d20d2016-09-08 14:40:26 -070027)