forked from BU-ISCIII/relecov-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 991 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
35
36
37
38
#!/usr/bin/env python
from setuptools import setup, find_packages
version = "1.1.0"
with open("README.md") as f:
readme = f.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="relecov_tools",
version=version,
description="Tools for managing and resolution of buisciii services.",
long_description=readme,
long_description_content_type="text/markdown",
keywords=[
"buisciii",
"bioinformatics",
"pipeline",
"sequencing",
"NGS",
"next generation sequencing",
],
author="Sara Monzon",
author_email="[email protected]",
url="https://github.com/BU-ISCIII/relecov-tools",
license="GNU GENERAL PUBLIC LICENSE v.3",
entry_points={
"console_scripts": ["relecov-tools=relecov_tools.__main__:run_relecov_tools"]
},
install_requires=required,
packages=find_packages(exclude=("docs")),
include_package_data=True,
zip_safe=False,
)