forked from amq92/simple_slurm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 956 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
28
from setuptools import find_packages, setup
with open('README.md', 'r') as fid:
long_description = fid.read()
with open('simple_slurm/__about__.py', 'r') as fid:
__version__ = None
exec(fid.read()) # loads __version__
setup(
name='simple_slurm',
version=__version__,
author='Arturo Mendoza',
description='A simple Python wrapper for Slurm with flexibility in mind.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/amq92/simple_slurm',
packages=find_packages(),
package_data={'': ['*.txt']},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
license='GNU Affero General Public License v3',
entry_points=dict(console_scripts=['simple_slurm=simple_slurm.cli:cli']),
)