blob: b844574476c01abd60f1ff0534018c7cb8e0e1ed [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
10twisted_deps = ['twisted']
11
12setup(
13 name = 'voltha',
14 version = '0.0.1',
15 author = 'Zsolt Haraszti, Nathan Knuth, Ali Al-Shabibi',
16 author_email = 'zharaszt@ciena.com',
17 description = ('Virtual Optical Line Terminal (OLT) Hardware Abstraction'),
18 license = 'LICENSE.txt',
19 keywords = 'volt gpon cord',
20 url = 'http://gerrit.opencord.org/voltha',
21 packages=['voltha', 'tests'],
22 long_description=read('README.md'),
23 classifiers=[
24 'Development Status :: 3 - Alpha',
25 'Topic :: System :: Networking',
26 'Programming Language :: Python',
27 'License :: OSI Approved :: Apache License 2.0',
28 ],
29 install_requires=['siz>1.7.2'],
30 extras_require={
31 'twisted': twisted_deps,
32 'all' : twisted_deps
33 },
34)
35