forked from reframe-hpc/reframe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 1.02 KB
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
import setuptools
from reframe import VERSION
with open('README.md') as read_me:
long_description = ''.join(read_me.readlines()[6:])
setuptools.setup(
name='ReFrame-HPC',
version=VERSION,
author='CSCS Swiss National Supercomputing Center',
description='ReFrame is a framework for writing regression tests '
'for HPC systems',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/eth-cscs/reframe',
licence='BSD 3-Clause',
packages=setuptools.find_packages(exclude=['unittests']),
python_requires='>=3.5',
scripts=['bin/reframe'],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Environment :: Console'
),
)