-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (38 loc) · 1.03 KB
/
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
39
40
41
42
import os
from setuptools import setup, find_packages
install_requires = [
"numpy",
"pandas>=1.0",
"HTSeq",
"pybedtools",
"scipy",
"pathos",
"scikit-learn",
"tqdm",
"inferelator"
]
tests_require = ["coverage", "pytest", "pysam"]
version = "0.4.0"
# Description from README.md
base_dir = os.path.dirname(os.path.abspath(__file__))
long_description = "\n\n".join(
[open(os.path.join(base_dir, "README.md"), "r").read()]
)
setup(
name="inferelator_prior",
version=version,
description="Inferelator-Prior Network Generation Tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flatironinstitute/inferelator-prior",
author="Chris Jackson",
author_email="[email protected]",
maintainer="Chris Jackson",
maintainer_email="[email protected]",
packages=find_packages(
include=["inferelator_prior", "inferelator_prior.*"]
),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require
)