forked from nornir-automation/nornir
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
36 lines (29 loc) · 1.06 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
#!/usr/bin/env python
import uuid
try:
from setuptools import find_packages, setup
except ImportError:
from distutils.core import setup
from pip.req import parse_requirements
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs = [str(ir.req) for ir in install_reqs]
__author__ = '[email protected]'
__license__ = 'Apache License, version 2'
__version__ = 0.1
setup(name='brigade',
version=__version__,
description="Fighting fire with fire",
author=__author__,
url='https://github.com/napalm-automation/brigade',
include_package_data=True,
install_requires=reqs,
packages=find_packages(exclude=("test*", )),
license=__license__,
test_suite='tests',
platforms='any',
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
])