-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (46 loc) · 1.41 KB
/
setup.py
File metadata and controls
53 lines (46 loc) · 1.41 KB
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
46
47
48
49
50
51
52
53
import os
from setuptools import setup, find_packages
def read(fname):
readme_file_path = os.path.join(os.path.dirname(__file__), fname)
if os.path.exists(readme_file_path) and os.path.isfile(readme_file_path):
readme_file = open(readme_file_path)
return readme_file.read()
else:
return "The SoftFIRE Security Manager"
setup(
name="security-manager",
version="0.2.7",
author="SoftFIRE",
author_email="softfire@softfire.eu",
description="The SoftFIRE Security Manager",
license="Apache 2",
keywords="python vnfm nfvo open baton openbaton sdk experiment manager softfire tosca openstack rest security firewall ips",
url="https://github.com/softfire-eu/security-manager",
packages=find_packages(),
scripts=["security-manager"],
install_requires=[
'bcrypt',
'bottle',
'IPy',
'keystoneauth',
'python-neutronclient',
'python-novaclient',
'python-glanceclient',
'openbaton-cli==5.0.1',
'python-neutronclient',
'PyYAML',
'requests',
'softfire-sdk==1.1.4',
'beaker',
'paramiko',
'scp',
'idstools',
'pexpect',
],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
],
)