-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 869 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 869 Bytes
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 os
from setuptools import find_packages, setup
# Get description from README
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, "README.md"), "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="sbatchpy",
version="1.0.0",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests.*", "tests", "figs", "examples"]),
author="Killian Sheriff",
author_email="ksheriff@mit.edu",
description="Sbatchpy is a python package allowing easy sbatch job script creation and submissions on hpc clusters, directly from python.",
license="MIT",
keywords=["sbatch", "slurm", "python", "hpc"],
url="https://github.com/killiansheriff/sbatchpy",
install_requires=[
"",
],
include_package_data=True,
)