forked from qca/boardfarm
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
27 lines (23 loc) · 828 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
#!/usr/bin/env python
# Get version without importing boardfarm because
# dependencies may not be installed yet
import os
from setuptools import find_packages, setup
g, ver = {}, {}
with open(os.path.join("boardfarm", "version.py")) as f:
exec(f.read(), g, ver)
setup(name='boardfarm',
version=ver['__version__'],
description='Automated testing of network devices',
author='Various',
url='https://github.com/lgirdk/boardfarm',
packages=find_packages(),
package_data={'': ['*.txt', '*.json', '*.cfg', '*.md', '*.tcl']},
include_package_data=True,
data_files=[('html', [
'boardfarm/html/template_results.html',
'boardfarm/html/template_results_basic.html'
])],
entry_points={
'console_scripts': ['bft=boardfarm.bft:main'],
})