-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (41 loc) · 1.2 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
42
43
44
45
#!/usr/bin/env python
# =============================================================================
# ODL-CLI
#
# Copyright (c) 2013-2016, Trustees of Indiana University,
# All rights reserved.
#
# This software may be modified and distributed under the terms of the BSD
# license. See the COPYING file for details.
#
# This software was created at the Indiana University Center for Research in
# Extreme Scale Technologies (CREST).
# =============================================================================
from setuptools import setup
version = "0.1"
setup(
name="odlcli",
version=version,
packages=["odlcli"],
package_data={},
author="Ezra Kissel",
author_email="[email protected]",
license="BSD",
url="https://github.com/disprosium8/odl-cli",
description="OpenDayLight-CommandLine Interface",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires=[
"python-odl",
"requests",
"docopt",
],
entry_points = {
'console_scripts': [
'odl-cli = odlcli.odl_cli:main',
]
}
)