forked from jamesra/nornir-shared
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (24 loc) · 873 Bytes
/
setup.py
File metadata and controls
34 lines (24 loc) · 873 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
30
31
32
33
34
'''
Created on Aug 30, 2013
@author: u0490822
'''
from ez_setup import use_setuptools
if __name__ == '__main__':
use_setuptools()
from setuptools import setup, find_packages
packages = find_packages()
install_requires = ["six"]
classifiers = ['Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 2.7']
#Starting with 1.3.4 Image Magick 7 is required
setup(name='nornir_shared',
zip_safe=True,
classifiers=classifiers,
version='1.3.4',
description="Shared routines for Nornir python packages and scripts",
author="James Anderson",
author_email="James.R.Anderson@utah.edu",
url="https://github.com/jamesra/nornir-shared",
packages=packages,
install_requires=install_requires,
test_suite='test')