forked from facebookarchive/neti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 891 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 891 Bytes
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
#
# Copyright (c) 2014, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
#
from neti import __author__, __author_email__, __version__
from setuptools import setup
setup(name='neti',
version=__version__,
description="Zookeeper-based iptables firewall sync daemon",
url="https://github.com/Instagram/neti",
long_description=open('README.txt').read(),
author=__author__,
author_email=__author_email__,
packages=['neti'],
scripts=['bin/neti'],
install_requires=[
'PyYAML',
'kazoo == 1.3.1',
'requests == 0.11.2',
'boto == 2.14.0',
'ipaddress == 1.0.6'
]
)