-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
60 lines (57 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
from io import open
import versioneer
DESCRIPTION = (
"ANANSE: Prediction of key transcription factors in cell fate "
"determination using enhancer networks"
)
with open("README.md", encoding="utf-8") as f:
long_description = f.read().strip("\n")
setup(
name="ananse",
version=versioneer.get_version(),
long_description=long_description,
long_description_content_type="text/markdown",
description=DESCRIPTION,
author="Quan Xu, Georgios Georgiou, Siebren Frölich, Maarten van der Sande, Jos Smits, Simon van Heeringen",
author_email="[email protected]",
url="https://github.com/vanheeringen-lab/ananse/",
download_url="https://github.com/vanheeringen-lab/ananse/"
+ versioneer.get_version(),
license="MIT",
packages=find_packages(),
scripts=["scripts/ananse"],
include_package_data=True,
zip_safe=False, # This is necessary, otherwise files won't be installed
classifiers=[
"Development Status :: 4 Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
python_requires=">=3.7",
install_requires=[
"adjusttext",
"dask <=2023.9.1",
"genomepy >=0.14",
"gimmemotifs >=0.18",
"loguru",
"matplotlib >=3.3",
"networkx",
"numpy >=1.6",
"openpyxl",
"pandas <2",
"pybedtools",
"pydot >=1.4.1",
"pygraphviz >=1.7",
"pyranges",
"tables", # pytables on conda
"scikit-learn",
"scipy >=1.9",
"seaborn",
"tqdm",
],
)