-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 727 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (17 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
###############################################################################
# Copyright 2020 UChicago Argonne, LLC.
# (c.f. AUTHORS, LICENSE)
# For more info, see https://xgitlab.cels.anl.gov/argo/cobalt-python-wrapper
# SPDX-License-Identifier: BSD-3-Clause
##############################################################################
from setuptools import setup
setup(name='cobalt',
version='0.1',
description='Python wrapper for cobalt scheduler',
url='https://xgitlab.cels.anl.gov/argo/cobalt-python-wrapper',
author='Nicolas Denoyelle',
author_email='ndenoyelle@anl.gov',
license='BSD-3-Clause',
packages=['cobalt'],
python_requires='>=2.7',
zip_safe=False)