-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cig-metrics.py
43 lines (38 loc) · 1023 Bytes
/
setup.cig-metrics.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
39
40
41
42
43
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("LICENSE") as f:
license = f.read()
tests_require = [
"mock",
"nose",
]
install_requires=[
"Bio",
"click>=8.0",
"Jinja2>=3.0",
"matplotlib",
"numpy",
"pandas",
"plotnine",
"pyyaml>=5.1",
"seaborn",
"tabulate",
]
setup(
name="cig-metrics",
version="0.1.0",
description="CGI@MGI Metrics Scripts & Tools",
author="Eddie Belter",
author_email="[email protected]",
license=license,
url="https://github.com/genome/cig.git",
install_requires=install_requires,
entry_points="""
[console_scripts]
metrics=cig.metrics.cli:cli
""",
setup_requires=["pytest-runner"],
test_suite="nose.collector",
tests_requires=tests_require,
packages=find_packages(include=["cig", "cig.metrics", "cig.metrics.alignment", "cig.metrics.alignment.parser", "cig.metrics.picard", "cig.metrics.json", "cig.metrics.seqlendist"], exclude=("tests")),
)