-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (25 loc) · 840 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = ['pandevice', 'lxml', 'netaddr', 'junos-eznc', 'terminaltables']
packages = ['orangengine',
'orangengine/drivers',
'orangengine/errors',
'orangengine/models',
'orangengine/models/base',
'orangengine/models/juniper',
'orangengine/models/paloalto']
config = {
'description': 'Firewall Policy Automation Engine',
'author': 'John Anderson',
'url': 'https://github.com/lampwins/orangengine',
'download_url': 'https://github.com/lampwins/orangengine',
'author_email': '[email protected]',
'version': '0.0.1',
'scripts': [],
'name': 'orangengine',
'install_requires': requirements,
'packages': packages
}
setup(**config)