forked from flatironinstitute/inferelator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.38 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
43
44
45
46
47
import os
from setuptools import setup, find_packages
# Current Inferelator Version Number
version = "0.5.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()])
# Required packages
requires = [
"numpy >=1.14.0",
"scipy >=0.9",
"pandas >=0.24.0",
"scikit-learn",
"matplotlib >=1.5.1",
"anndata >=0.7.4"
]
setup(
name="inferelator",
version=version,
description="Inferelator: Network Inference",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flatironinstitute/inferelator",
project_urls={
"Documentation": "https://inferelator.readthedocs.io/",
},
author="Chris Jackson",
author_email="[email protected]",
maintainer="Chris Jackson",
maintainer_email="[email protected]",
packages=find_packages(include=["inferelator", "inferelator.*"], exclude=["tests", "*.tests"]),
zip_safe=False,
install_requires=requires,
python_requires=">=3.5",
tests_require=["coverage", "nose", "bio-test-artifacts", "tables"],
test_suite="nose.collector",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
)