forked from rackslab/Slurm-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 822 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='slurm-web',
version='2.4.0',
author='EDF CCN-HPC',
author_email='[email protected]',
description='Web solution for Slurm HPC job schedulers',
long_description=long_description,
url='https://github.com/edf-hpc/slurm-web',
package_dir={'': 'src'},
packages=setuptools.find_packages(where='src'),
package_data={'': ['*.wsgi']},
install_requires=['Flask',
'ClusterShell',
'pyslurm',
'python-ldap',
'redis'],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
],
python_requires='>=3.5',
)