-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtmp_setup.py
36 lines (26 loc) · 1007 Bytes
/
tmp_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
'''
Created on Aug 30, 2013
@author: u0490822
'''
#from ez_setup import use_setuptools
if __name__ == '__main__':
#use_setuptools()
from setuptools import setup, find_packages
install_requires = ["six"]
packages = find_packages()
# extras_require = {"pp" : ["pp"]}
extras_require = {}
tests_require = ["nose"]
classifiers = ['Programming Language :: Python :: 3.7']
setup(name='nornir_pools',
zip_safe=True,
classifiers=classifiers,
version='1.5.0',
description="A helper library that wraps python threads, multiprocessing, a process pool for shell commands, and parallel python with the same interface",
author="James Anderson",
author_email="James.R.Anderson@utah.edu",
url="https://github.com/nornir/nornir-pools",
install_requires=install_requires,
tests_require=tests_require,
extras_require=extras_require,
packages=packages, test_suite='test')