-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 704 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='job-combine',
version='1.1.0',
packages=find_packages(),
url='https://github.com/ssauermann/job-combine',
license='MIT',
author='Sascha Sauermann',
author_email='saschasauermann@gmx.de',
description='Combine similar job scripts for workload managers like SLURM or Loadleveler into fewer scripts '
'executing the original jobs sequentially to prevent wasting resources when running multiple short '
'scripts.',
entry_points={
'console_scripts': [
'job-combine = job_combine.job_combine:main',
],
}, test_requires=['pytest'], install_requires=[]
)