-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (30 loc) · 964 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
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import find_packages, setup
VERSION = "0.4.9"
with open("README.md") as f:
readme = f.read()
setup(
name="seqerakit",
version=VERSION,
description="Automate creation of Seqera Platform resources",
long_description=readme,
long_description_content_type="text/markdown",
keywords=[
"nextflow",
"bioinformatics",
"workflow",
"pipeline",
"seqera-platform",
"seqera",
],
author="Esha Joshi, Adam Talbot, Harshil Patel",
url="https://github.com/seqeralabs/seqera-kit",
license="Apache 2.0",
entry_points={"console_scripts": ["seqerakit=seqerakit.cli:main"]},
python_requires=">=3.8, <4", # untested
install_requires=["pyyaml>=6.0.0"],
packages=find_packages(exclude=("docs")),
include_package_data=True,
zip_safe=False,
)