-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (29 loc) · 989 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
29
30
'''
Build with:
setup.py bdist_wheel
or install in editable mode with
Scripts\pip install -e path\to\testbenchexecutor
'''
from __future__ import absolute_import
from setuptools import setup
setup(
name='testbenchexecutor',
version='0.1.12',
author='MetaMorph Software, Inc',
author_email='[email protected]',
description='Executes the steps in a Test Bench manifest',
packages=['testbenchexecutor', 'testbenchexecutor.templates', 'testbenchexecutor.progress_service', 'testbenchexecutor.progress_service.gen'],
package_dir={'testbenchexecutor': 'testbenchexecutor'},
package_data={'testbenchexecutor.templates': ['*.css', '*.html']},
install_requires=[
'python-dateutil>=2.5.0',
'Jinja2>=2.10.0'],
entry_points = {
"console_scripts": [
"testbenchexecutor = testbenchexecutor.__main__:main",
]
},
project_urls={
'Source': 'https://github.com/metamorph-inc/testbenchexecutor',
},
)