forked from joonan-lab/cwas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (35 loc) · 1.18 KB
/
setup.py
File metadata and controls
executable file
·37 lines (35 loc) · 1.18 KB
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
#!/usr/bin/env python3
"""Category-wide association study (CWAS)
This is a data analytic tool to perform stringent association tests
to find non-coding loci associated with autism spectrum disorder (ASD).
"""
import setuptools
setuptools.setup(
name="cwas",
version="0.0.1",
license="MIT",
author="Minwoo Jeong",
author_email="jeongmwj@gmail.com",
description=__doc__,
url="https://github.com/joonan-lab/cwas",
project_urls={
"Bug Tracker": "https://github.com/joonan-lab/cwas/issues",
},
packages=setuptools.find_packages(),
package_data={'': ['*.r', '*.R']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
],
python_requires='>=3.7',
entry_points={
'console_scripts': [
'cwas = cwas.__main__:main'
]
},
install_requires=["pandas", "scipy", "tqdm", "igraph", "matplotlib", "rpy2", "seaborn", "parmap",
"polars", "scikit-learn", "pysam", "pytabix", "pyyaml", "python-dotenv", "pytest", "pyarrow",
"adjustText", "numpy"]
)