Page MenuHomec4science

setup.py
No OneTemporary

File Metadata

Created
Sun, May 5, 13:59

setup.py

#!/usr/bin/env python
from setuptools import setup, find_packages
desc = ''
with open('README.rst') as f:
desc = f.read()
setup(
name='sausage-api',
scripts=['sausage-api'],
version='0.1.1',
description=('SLURM account usage API'),
long_description=desc,
url='',
author='Antonio J. Russo',
author_email='antonio.russo@epfl.ch',
license='GPL v3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Logging'
],
keywords=['hpc', 'supercomputers', 'consumption', 'billing', 'slurm'],
packages=find_packages(exclude=['docs', 'test*']),
install_requires=[
'falcon>=3.0.0',
'gunicorn>=20.1.0',
'elasticsearch>=7.12.1'
],
)

Event Timeline