-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.5 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
import subprocess
import os, sys
import platform
with open("VERSION") as f:
version = f.read()
setup(
name="cfiddle_slurm",
version=version.strip(),
package_data={
'cfiddle_slurm': ['VERSION'],
},
install_requires = ["cfiddle"],
description="Support for running CFiddle functions via Slurm",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers', # Define that your audience are developers
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
url="https://github.com/NVSL/cfiddle-slurm",
author="Steven Swanson",
author_email="[email protected]",
packages=find_packages('src'),
package_dir={'': 'src'},
entry_points={
'console_scripts' :[
'cfiddle-slurm-runner-delegate-run=cfiddle_slurm.SlurmRunnerDelegate:slurm_runner_delegate_run'
]
},
scripts=['bin/cfiddle-slurm-run-shared-directory.sh',
'bin/cfiddle-slurm-run-unshared-directory.sh'
]
)