-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
30 lines (29 loc) · 1015 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
from setuptools import setup
from glob import glob
import os
setup(name='lammps_testing',
version='1.0.0',
description='Utilities to run LAMMPS tests',
url='https://github.com/lammps/lammps-testing',
author='Richard Berger',
author_email='[email protected]',
license='GPL',
packages=['lammps_testing'],
entry_points = {
"console_scripts": ['lammps_run_tests = lammps_testing.run_tests:main',
'lammps_generate_regression_xml = lammps_testing.generate_regression_xml:main',
'lammps_regression_tests = lammps_testing.regression:main',
'lammps_test = lammps_testing.lammps_test:main',
'lammps_run_regression_test = lammps_testing.run_regression_test:main'
]
},
install_requires=[
'pynose',
'gcovr',
'termcolor',
'matplotlib',
'pyyaml',
'Jinja2',
'coverage'
]
)