-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (37 loc) · 1.45 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
try:
from setuptools import setup
extra = dict(test_suite="tests.test.suite", include_package_data=True)
except ImportError:
from distutils.core import setup
extra = {}
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n') if (line and not
line.startswith('--'))
]
setup(
name='python-odl',
version='0.0.2',
author='Beraldo Leal',
author_email='[email protected]',
packages=["odl", "of"],
url='http://github.com/SPRACE/python-odl/',
license='LICENSE.md',
description='Python 2.x library for OpenDayLight interations via REST API.',
install_requires=install_requires,
scripts=[],
keywords = ['odl', 'opendayligh', 'sdn', 'openflow', 'python', 'library', 'rest', 'api'],
platforms = "Posix; MacOS X;",
classifiers = ["Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Topic :: System :: Networking",
"Programming Language :: Python :: 2.7"],
**extra
)